An open API service indexing awesome lists of open source software.

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

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/`