First, navigate to migratooor root directory in your terminal and run the following command to install all the required dependencies:
bun iTo run migratooor in development mode, use the following command:
bun run devIf you want to run the TypeScript compiler in watch mode alongside the development server, use:
bun run dev:tsTo build migratooor, run the following command:
bun run buildThis 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 startTo run the ESLint linter, use the following command:
bun run lintThis command will check all .js, .jsx, .ts, and .tsx files in the project for linting issues.
