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