https://github.com/vunamhung/remix-fullstack
RemixJS + D1 + Drizzle ORM + Cloudflare Worker + TailwindCSS
https://github.com/vunamhung/remix-fullstack
cloudflare cloudflare-workers d1 drizzle-orm remixjs tailwindcss
Last synced: 30 days ago
JSON representation
RemixJS + D1 + Drizzle ORM + Cloudflare Worker + TailwindCSS
- Host: GitHub
- URL: https://github.com/vunamhung/remix-fullstack
- Owner: vunamhung
- License: mit
- Created: 2023-05-03T02:41:21.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-04T13:42:18.000Z (over 2 years ago)
- Last Synced: 2025-04-19T07:04:50.676Z (6 months ago)
- Topics: cloudflare, cloudflare-workers, d1, drizzle-orm, remixjs, tailwindcss
- Language: TypeScript
- Homepage: https://remix-fullstack.hungvu.work/
- Size: 276 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Welcome to Remix!
- [Remix Docs](https://remix.run/docs)
## Development
You will be running two processes during development:
- The Miniflare server (miniflare is a local environment for Cloudflare Workers)
- The Remix development serverBoth are started with one command:
```sh
npm run dev
```Open up [http://127.0.0.1:8787](http://127.0.0.1:8787) and you should be ready to go!
If you want to check the production build, you can stop the dev server and run following commands:
```sh
npm run build
npm start
```Then refresh the same URL in your browser (no live reload for production builds).
## Deployment
If you don't already have an account, then [create a cloudflare account here](https://dash.cloudflare.com/sign-up) and after verifying your email address with Cloudflare, go to your dashboard and set up your free custom Cloudflare Workers subdomain.
Once that's done, you should be able to deploy your app:
```sh
npm run deploy
```