- Linter.
- Formatter.
- Git Automation.
Example how to create environment
cp .env.example .env
Example how to start development application
yarn install
yarn start:dev
Example how to run build application
yarn install
yarn build
yarn start:prod
Example how to executes database migrations to apply pending schema changes
yarn migrate:up
Example how to reverts the most recent database migration, undoing schema changes
yarn migrate:down
Example how to check formatting issues without modifying files
yarn prettier:check
Example how to check and fixing formatting issues by modifying files
yarn prettier:fix