Demo application is running here (it might take a while before the free server wakes up)
📘 API is documented here.
📗 Example frontend application is 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-migrate
make db-seed
Run node server:
make node_modules
make watch
Define env
variables:
cp .env.development.template .env.development
EMAIL_TOKEN
variable. You can find more information on sendgrid.comNow you can open http://localhost:8080 in your browser.
make db-migrate
apply database migrationmake db-rollback
rollback database migrationmake db-reset
rollback and migratemake db-seed
seed databasemake test
run testsmake test-coverage
run tests and report coverage