/remix-boilerplate

This is a boilerplate to let you start your next project ideas

Primary LanguageTypeScript

Remix Boilerplate

Database setup

Create the database and generate the migration

touch ./app/db/database.db
bun db:migrations

Development

From your terminal:

bun dev

This starts your app in development mode, rebuilding assets on file changes.

Deployment

First, build your app for production:

bun build

Then run the app in production mode:

bun start

Features

  • Setup the authentication
  • Setup a simple Dashboard
  • Profile setting
  • Add a landing page

Now you'll need to pick a host to deploy it to.

DIY

If you're familiar with deploying node applications, the built-in Remix app server is production-ready.

Make sure to deploy the output of remix build

  • build/
  • public/build/