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
- Host: GitHub
- URL: https://github.com/devalade/remix-boilerplate
- Owner: devalade
- Created: 2023-12-10T16:33:21.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-14T23:06:21.000Z (over 2 years ago)
- Last Synced: 2023-12-15T00:23:47.776Z (over 2 years ago)
- Language: TypeScript
- Size: 459 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/`