Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mcansh/my-remix-cloudflare-app
https://github.com/mcansh/my-remix-cloudflare-app
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mcansh/my-remix-cloudflare-app
- Owner: mcansh
- Created: 2021-10-09T14:43:14.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-06T12:44:20.000Z (over 1 year ago)
- Last Synced: 2024-10-18T06:29:03.047Z (26 days ago)
- Language: TypeScript
- Size: 787 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Welcome to Remix!
- [Remix Docs](https://docs.remix.run)
- [Customer Dashboard](https://remix.run/dashboard)## Development
You will be running two processes during development when using Vercel as your server.
- Your Miniflare server in one (miniflare is a local environment for Cloudflare Workers)
- The Remix development server in another```sh
# in one tab (starts remix dev server)
$ npm run dev# in another (starts miniflare server)
$ npm start
```Open up [http://127.0.0.1:8787](http://127.0.0.1:8787) and you should be ready to go!
If you'd rather run everything in a single tab, you can look at [concurrently](https://npm.im/concurrently) or similar tools to run both processes in one tab.
## Deployment
Use wrangler to build and deploy your application to Cloudflare Workers:
```sh
npm run deploy
```