bring wrangler config up to date, include in repo

This commit is contained in:
Emil Lerch 2025-11-25 10:01:40 -08:00
parent 4dcbec2277
commit aa09ef4ba0
Signed by: lobo
GPG key ID: A7B62D657EF764F8
4 changed files with 18 additions and 2 deletions

1
.gitignore vendored
View file

@ -1,2 +1 @@
wrangler.toml
node_modules

View file

@ -18,7 +18,8 @@ Broken here would mean that clicking login forces you through the multiple
drop downs to select site.
This section should be in your wrangler.toml file. Replace with the correct
values of course.
values of course. An example wrangler.toml file (for troop618.org) is included.
```toml
[vars]

16
wrangler.toml Normal file
View file

@ -0,0 +1,16 @@
name = "troop618"
account_id = "c7221b4e158b0c8f6009a627d5a6a41d"
compatibility_date = "2025-11-25"
main = "src/index.js"
routes = [
{ pattern = "troop618.org/*", zone_id = "62922e2b7c3bb7baee2d472943cfd594" },
{ pattern = "*.troop618.org/*", zone_id = "62922e2b7c3bb7baee2d472943cfd594" }
]
[vars]
TMSITEID = "203232"
TMSITENAME = "Troop618"
[assets]
directory = "./static"