Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 647 Bytes

README.md

File metadata and controls

33 lines (21 loc) · 647 Bytes

Cupcake

Order cupcakes. Write clean code. Eat your own dog food 🧁

An example implementation of thekarel/best-practices

First time setup

Install all dependencies:

yarn

Development

To start the UI and GraphQL server and store data in memory:

yarn dev

To connect to a real MongoDB database:

MONGO_URL=mongodb://localhost:7017 yarn dev

A simple docker-compose.yml is provided. If you have Docker installed you can start a MongoDB instance on localhost:7017 and Mongo Express on http://localhost:4400/ with

docker-compose up