First, navigate to migratooor root directory in your terminal and run the following command to install all the required dependencies:
bun i
To run migratooor in development mode, use the following command:
bun run dev
If you want to run the TypeScript compiler in watch mode alongside the development server, use:
bun run dev:ts
To build migratooor, run the following command:
bun run build
This command will first compile the TypeScript files and then build the project using the next
command.
To start the production server, first build migratooor (if you haven't already), and then run the following command:
bun run start
To run the ESLint linter, use the following command:
bun run lint
This command will check all .js
, .jsx
, .ts
, and .tsx
files in the project for linting issues.