An open API service indexing awesome lists of open source software.

https://github.com/devalade/remix-boilerplate

This is a boilerplate to let you start your next project ideas
https://github.com/devalade/remix-boilerplate

Last synced: 7 days ago
JSON representation

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

Awesome Lists containing this project

README

          

# Remix Boilerplate

## Database setup

Create the database and generate the migration

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

## Development

From your terminal:

```sh
bun dev
```

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

## Deployment

First, build your app for production:

```sh
bun build
```

Then run the app in production mode:

```sh
bun start
```

## Features

- [x] 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/`