https://github.com/moishinetzer/remix-run-issue-template
https://github.com/moishinetzer/remix-run-issue-template
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/moishinetzer/remix-run-issue-template
- Owner: moishinetzer
- Created: 2023-09-20T10:04:28.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-20T10:11:45.000Z (almost 3 years ago)
- Last Synced: 2025-04-04T20:43:15.270Z (about 1 year ago)
- Language: CSS
- Size: 961 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
```