https://github.com/dbtlr/dbtlr.com
Website / blog for https://dbtlr.com
https://github.com/dbtlr/dbtlr.com
Last synced: about 1 month ago
JSON representation
Website / blog for https://dbtlr.com
- Host: GitHub
- URL: https://github.com/dbtlr/dbtlr.com
- Owner: dbtlr
- Created: 2024-05-15T03:25:43.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2026-01-27T03:49:58.000Z (5 months ago)
- Last Synced: 2026-05-26T22:35:21.547Z (about 1 month ago)
- Language: Astro
- Size: 429 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Drew Butler
Remix website for
## Typegen
Generate types for your Cloudflare bindings in `wrangler.toml`:
```sh
pnpm run typegen
```
You will need to rerun typegen whenever you make changes to `wrangler.toml`.
## Development
Run the Vite dev server:
```sh
pnpm run dev
```
To run Wrangler:
```sh
pnpm run build
pnpm 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
pnpm run build
```
Then, deploy your app to Cloudflare Pages:
```sh
pnpm run deploy
```
[bindings]: https://developers.cloudflare.com/pages/functions/bindings/