Demo application is running here (it might take a while before the free server wakes up)
📘 Frontend application is running here. You can find the source code here.
System Dependencies:
brew install node
brew install yarn
brew install make
brew install docker
brew install docker-compose
Run docker database:
make infra
make db-run-migration
Run node server:
make node_modules
make watch
Now you can open http://localhost:8080/graphql in your browser.
make db-generate-migration name=migration_name
create database migrationmake db-run-migration
apply database migrationmake db-revert
revert last database migrationmake db-reset
revert migration and apply it againmake test
run testsmake test-coverage
run tests and report coveragemake lint-ts
run eslint on typescript filesmake prettier
format source code by prettier