1

Set up local wrangler config

This commit is contained in:
Evan Pratten 2024-04-13 11:33:06 -04:00
parent c40a578c2a
commit 3a99566cb6
4 changed files with 1451 additions and 0 deletions

3
.gitignore vendored
View File

@ -24,3 +24,6 @@ Cargo.lock
# Python
.venv
# Cloudflare
.wrangler

1428
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

5
package.json Normal file
View File

@ -0,0 +1,5 @@
{
"devDependencies": {
"wrangler": "^3.50.0"
}
}

15
wrangler.toml Normal file
View File

@ -0,0 +1,15 @@
# Generated by Wrangler on Sat Apr 13 2024 11:31:29 GMT-0400 (Eastern Daylight Saving Time)
name = "ewpratten"
pages_build_output_dir = "public"
compatibility_date = "2023-05-22"
[vars]
GOAT_COUNTER_SITE_CODE = "ewpratten"
ZOLA_VERSION = "0.15.3"
[env.production]
compatibility_date = "2023-05-22"
[env.production.vars]
GOAT_COUNTER_SITE_CODE = "ewpratten"
ZOLA_VERSION = "0.15.3"