-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
23 lines (23 loc) · 1.18 KB
/
Copy pathwrangler.jsonc
File metadata and controls
23 lines (23 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
// ───────────────────────────────────────────────────────────────────────────
// Nova Proxy — Cloudflare Worker config (Deploy-to-Cloudflare ready)
// Cloudflare reads this, auto-creates the D1 database, binds it, and deploys
// the Worker — no terminal. The Worker creates its own D1 tables on first run.
// After deploy, open the Worker URL → the /install wizard sets the admin password.
// ───────────────────────────────────────────────────────────────────────────
"name": "nova",
"main": "worker.js",
"compatibility_date": "2024-09-23",
"compatibility_flags": ["nodejs_compat"],
"d1_databases": [
{
"binding": "DB",
"database_name": "nova-proxy-db",
"database_id": "46e7052f-1e6b-4522-96a7-3aeb4305ac4f"
}
],
"vars": {
"ENABLE_CRON": "false",
"PAGES_URL": "https://raw.githubusercontent.com/IRNova/Nova-Proxy/main/public"
}
}