Docs:
bun install
Migrate database schema to the database:
bun db:migrate
Generate the Prisma client and more using ZenStack:
bun db:gen
Run the dev server:
bun dev
Pick a server host to deploy it to.
Install the dependencies, migrate database, and generate required files:
bun install && bun db:migrate && bun db:gen
Build app for production:
bun run build
Then run the app in production mode:
bun start
The built-in Remix app server is production-ready.
Make sure to deploy the output of bun run build
.
build/server
build/client