Create new migration:
This command will generate a new unique migration file by scanning through all git branches, including remote branches.
pnpm migration create some-migration-nameRunning migrations:
pnpm migration migrateRun postgres server using Docker:
docker compose up -dRun migration:
pnpm migration migrateStart a development server:
pnpm dev
# or start the server and open the app in a new browser tab
pnpm dev -- --openTo create a production version of your app:
pnpm buildYou can preview the production build with pnpm preview.
To deploy your app, you may need to install an adapter for your target environment.