docker-compose up --build
docker-compose down && docker-compose up --build
PROD=true docker-compose up --build
npm install
cp .env.example .env
export $(xargs <.env)
docker-compose up -d db
tsc
npm run migrate
npm run seed-prod
node --require ts-node/register src/app.ts
The api browser will be available at http://localhost:3000/graphiql
The actual api will be on http://localhost:3000/graphql
docker-compose down