https://github.com/ahaywood/two-week-build__remix
Two Week Build Platform, built in Remix
https://github.com/ahaywood/two-week-build__remix
Last synced: 5 months ago
JSON representation
Two Week Build Platform, built in Remix
- Host: GitHub
- URL: https://github.com/ahaywood/two-week-build__remix
- Owner: ahaywood
- Created: 2024-02-29T21:20:37.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-23T19:53:36.000Z (about 1 year ago)
- Last Synced: 2024-08-13T07:17:00.083Z (9 months ago)
- Language: TypeScript
- Homepage: https://two-week-build-remix.vercel.app
- Size: 890 KB
- Stars: 13
- Watchers: 2
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - ahaywood/two-week-build__remix - Two Week Build Platform, built in Remix (TypeScript)
README
# Welcome to Remix!
- [Remix Docs](https://remix.run/docs)
## Development
From your terminal:
```sh
npm run dev
```This starts your app in development mode, rebuilding assets on file changes.
## Deployment
First, build your app for production:
```sh
npm run build
```Then run the app in production mode:
```sh
npm start
```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/`