- Start database container;
docker-compose up -d
- Copy ormconfig.example.json to ormconfig.json with your DB connection;
- Install dependencies;
npm i
- Install globally typeorm;
sudo npm i typeorm -g
- Compile .ts to .js files to ./bin/ folder;
npm run compile
- Up migrations;
typeorm migrations:run
- Run Application in dev mode.
npm run dev
- Execute command in cli;
npm run test:all