Files
open-gsio/wrangler.jsonc
geoffsee 3f717fab1b - Update default model to meta-llama/llama-4-scout-17b-16e-instruct in ClientChatStore
- Revise deployment steps and docs for `GROQ_API_KEY`
- Enable `workers_dev` in `wrangler.jsonc`
- Adjust hero label to `open-gsio` in routes
- Update `.gitignore` to include sensitive config files
- Add `deploy:secrets` script in `package.json`
2025-05-28 21:33:34 -04:00

54 lines
1.0 KiB
JSON

{
"name": "open-gsio",
"assets": {
"binding": "ASSETS",
"directory": "./dist/client"
},
"dev": {
"ip": "localhost",
"port": 3001
},
"compatibility_date": "2025-04-04",
"compatibility_flags": [
"nodejs_compat"
],
"main": "./workers/site/worker.ts",
"preview_urls": false,
"workers_dev": true,
"kv_namespaces": [
{
"binding": "KV_STORAGE",
// $ npx wrangler kv namespace create open-gsio
"id": "placeholderId",
// $ npx wrangler kv namespace create open-gsio --preview
"preview_id": "placeholderIdPreview"
}
],
"migrations": [
{
"new_classes": [
"SiteCoordinator"
],
"tag": "v1"
}
],
"services": [
{
"binding": "EMAIL_SERVICE",
"service": "email-service-rpc"
}
],
"durable_objects": {
"bindings": [
{
"class_name": "SiteCoordinator",
"name": "SITE_COORDINATOR",
"script_name": "open-gsio"
}
]
},
"observability": {
"enabled": true
}
}