https://github.com/superhighfives/code.charliegleason.com
A little code blog built on React Router 7 and Cloudflare Workers.
https://github.com/superhighfives/code.charliegleason.com
code tutorials
Last synced: 15 days ago
JSON representation
A little code blog built on React Router 7 and Cloudflare Workers.
- Host: GitHub
- URL: https://github.com/superhighfives/code.charliegleason.com
- Owner: superhighfives
- Created: 2025-09-26T23:13:15.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2026-04-24T01:19:44.000Z (about 2 months ago)
- Last Synced: 2026-04-24T03:25:24.487Z (about 2 months ago)
- Topics: code, tutorials
- Language: TypeScript
- Homepage: https://code.charliegleason.com
- Size: 524 MB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
# ❯ code.charliegleason.com
📖 See the [Remix docs](https://remix.run/docs) and the [Remix Vite docs](https://remix.run/docs/en/main/guides/vite) for details on supported features.
## og:image with Satori
Uses [vite-plugin-wasm-module-workers](https://github.com/superhighfives/vite-plugin-wasm-module-workers/) to handle `og:image` generation on Vite and Cloudflare Workers.
## Typegen
Generate types for your Cloudflare bindings in `wrangler.toml`:
```sh
npm run typegen
```
You will need to rerun typegen whenever you make changes to `wrangler.toml`.
## Development
Run the Vite dev server:
```sh
npm run dev
```
To run Wrangler:
```sh
npm run build
npm run start
```
## Deployment
> [!WARNING]
> Cloudflare does _not_ use `wrangler.toml` to configure deployment bindings.
> You **MUST** [configure deployment bindings manually in the Cloudflare dashboard][bindings].
First, build your app for production:
```sh
npm run build
```
Then, deploy your app to Cloudflare Pages:
```sh
npm run deploy
```
[bindings]: https://developers.cloudflare.com/pages/functions/bindings/