GraphQL API for ordering places in restaurants.
Make sure that docker and node are installed prior the launch of application. Recommended version of node is 20.
- Create
.envfile in the root of the project. Checkenv-examplein order to view a list of required variables. - Build the docker image in the root of the project -
docker-compose up --build. - Install dependencies -
npm install. - Execute all migrations -
npm run migration:run. - Optional: seed the database -
npm run seed. - Launch the application -
npm start.