https://github.com/leon/blog-remix-deno
A demo of how to run remix on deno deploy
https://github.com/leon/blog-remix-deno
Last synced: about 1 year ago
JSON representation
A demo of how to run remix on deno deploy
- Host: GitHub
- URL: https://github.com/leon/blog-remix-deno
- Owner: leon
- Created: 2022-02-19T15:53:56.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-19T16:08:26.000Z (over 4 years ago)
- Last Synced: 2025-05-18T19:08:47.284Z (about 1 year ago)
- Language: TypeScript
- Size: 120 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Welcome to Remix!
- [Remix Docs](https://remix.run/docs)
## Development
You will be utlizing Deno in watch mode. This is already wired up in your package.json as the `dev` script:
```sh
# start the remix dev server and your deno app in watch mode
$ npm run dev
```
Open up [http://127.0.0.1:8000](http://127.0.0.1:8000) and you should be ready to go!
## 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 deno applications you should be right at home just make sure to deploy the output of `remix build`
- `build/`
- `public/build/`