Project Commands

Commands 💻

Name
Command
Description

Build

yarn build

Builds all the packages inside the project

Linting

yarn lint

Lints the project using next lint

Running Development

yarn dev

Runs the project in development mode

Running Production

yarn start

Runs the project from production build

Database migrations

yarn db:migration

Runs the migrations on the database

Undoing database migrations

yarn db:migration:undo

Undoes the migrations on the database

Creating a new database migration

yarn db:migration:create

Creates a new sequelize migration file

Database seeding

yarn db:seed

Seeds the data in the database

Undoing database seeding

yarn db:seed:undo

Undoes the seeding of the database

Creating a new database seed

yarn db:seed:create

Creates a new sequelize seed file

Last updated