A system for organizing food orders. Written in ReactJS and Meteor.
- Allow people to online organize a food order (for pizza for example).
- Summarizes same item orders
- Easily shareable link to specific order.
- Phone
Use the automated docker image
version: '2.2'
services:
eatit:
image: eatit
ports:
- "80:8080"
environment:
ROOT_URL: https://example.org
MONGO_URL: mongodb://db:27017
db:
image: mongo
- docker
- docker-compose
Run the following command:
docker-compose up
You can compile and build the production image with your local codebase using:
docker-compose -f prod.docker-compose up --build