Skip to content

asiaziola/bikeramp-nestjs

Repository files navigation

Bikeramp

Bikeramp is a tracking system for bike couriers. Deployed version is available under https://bikeramp-nestjs.herokuapp.com.

Run development server

In order to run server locally, you need to follow these steps:

  1. Create env/development.env file in config directory and set there following environment variables:
DATABASE_URL=postgres://user:password@host:port/db_name
GOOGLE_MAPS_ACCESS_KEY=YOUR_ACCESS_KEY
PORT=5000
  1. Run:
npm run start:dev

Routes

Trips

  1. POST /api/trips

Logs the trip and automatically calculates the distance between start and destination addresses.

Parameters:

  • start_address - start address, e.g.: "Plac Europejski 2, Warszawa, Polska"
  • destination_address - destination address, e.g.: "Plac Europejski 2, Warszawa, Polska"
  • price - package price, e.g.: 22.50
  • date - date of delivery, e.g. "2022-08-27"
  1. GET /api/trips

Returns all tracked trips ordered by date.

Stats

  1. GET api/stats/weekly

Returns how many kilometers did the courier ride during current week and how much money he received for the rides.

  1. GET api/stats/monthly Returns a summary of ride distances from current month, grouped by day.

Run E2E tests

In order for E2E tests to work properly env/test.env file must be created in the config directory. E2E tests use in memory sqlite database, but Google Maps access key must be provided:

GOOGLE_MAPS_ACCESS_KEY=YOUR_ACCESS_KEY

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published