This is an online delivery application like Glovo, which allows you to order and arrange delivery of products to the specified address.
- google maps - specifying the address with a marker, displaying the store icon on the map at the address of the store, calculating the distance and time depending on the method of delivery on foot or by car, setting the delivery address via input, depending on the method of delivery on foot or by car;
🎨
Design ideas for this project were taken from https://dribbble.com
$ cd client
$ npm install
$ cd server
$ npm install
1. Create inside client/server dir file .env
2. Copy content from .env.dist to .env
3. Change the data in the .env file to required
# development mode
$ npm run dev
# production mode
$ npm run start
# development mode
$ npm run start:dev
# production mode
$ npm run start:prod
# development mode
$ npm run seed
# development mode
$ npx prisma migrate dev --name shopAddressAndIcon
$ npx prisma migrate deploy
___