https://github.com/moishinetzer/remix-broken-hmr-repro
https://github.com/moishinetzer/remix-broken-hmr-repro
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/moishinetzer/remix-broken-hmr-repro
- Owner: moishinetzer
- Created: 2023-09-20T10:16:19.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-20T10:20:39.000Z (almost 3 years ago)
- Last Synced: 2025-09-08T22:46:47.540Z (10 months ago)
- Language: CSS
- Size: 924 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Remix Issue Template
(Initially adapted from the jokes app)
This template contains a basic setup of all features of Remix, useful for replicating tests.
- [Remix Docs](https://remix.run/docs)
## Preview
Open this issue template on [CodeSandbox](https://codesandbox.com):
[](https://codesandbox.io/s/github/moishinetzer/remix-run-issue-template/tree/main/)
## Development
From your terminal:
```sh
npm install
npx prisma migrate dev
npm run dev
```
This prepares the local dev database and starts your app in development mode, rebuilding assets on file changes.
## Deployment
First, build your app for production:
```sh
npm run build
```
Then apply any database changes:
```sh
npx prisma migrate deploy
```
Then run the app in production mode:
```sh
npm start
```