CQRS-lite blog api example
Install dependencies:
npm install
Start database in a tab:
cd dev
docker-compose up
Migrate database:
npm run db:migrate
Normal startup from compiled files:
npm run build
npm start
Startup directly from Typescript files:
npm ts-start
Startup with auto-reload on source file changes:
npm run live
npm test
Start database in a tab:
cd dev
docker-compose up
Run tests in another tab:
npm test:e2e