This project was generated using @nxpm/stack which is based on Nx.
Start the database server (add -d to run it in the background):
docker-compose upCopy the .env.example file to .env:
cp .env.example .envCreate the database schema:
yarn setupStart Api
yarn dev:apiStart Web
yarn dev:webThe queries for the GraphQL SDK are stored in libs/web/core/data-access/src/graphql.
After updating the queries you can re-generate the SDK:
yarn sdk:webOr run it in watch mode
yarn sdk:web:watchYou can build both apps into a production build:
yarn buildAfter that, you can run the production app:
yarn startBuild Api
yarn build:apiBuild Web
yarn build:webApi: api
Web: web
Web: web