https://github.com/atusy/helpr
https://github.com/atusy/helpr
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/atusy/helpr
- Owner: atusy
- Created: 2024-06-08T09:02:42.000Z (10 months ago)
- Default Branch: remix
- Last Pushed: 2024-11-12T13:29:16.000Z (5 months ago)
- Last Synced: 2025-03-10T07:46:24.006Z (about 1 month ago)
- Language: TypeScript
- Size: 499 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - atusy/helpr - (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/server`
- `build/client`