compassmock/wrangler.jsonc
Nicholai 9c3a19279a
feat(schema): add auth, people, and financial tables (#26)
Add users, organizations, teams, groups, and project
members tables. Extend customers/vendors with netsuite
fields. Add netsuite schema for invoices, bills,
payments, and credit memos. Include all migrations,
seeds, new UI primitives, and config updates.

Co-authored-by: Nicholai <nicholaivogelfilms@gmail.com>
2026-02-04 16:18:39 -07:00

48 lines
1.0 KiB
JSON
Executable File

/**
* For more details on how to configure Wrangler, refer to:
* https://developers.cloudflare.com/workers/wrangler/configuration/
*/
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "compass",
"account_id": "8716137c706ea3d5c209b330084fa9e2",
"main": ".open-next/worker.js",
"compatibility_date": "2025-12-01",
"compatibility_flags": [
"nodejs_compat",
"global_fetch_strictly_public"
],
"routes": [
{
"pattern": "compass.openrangeconstruction.ltd",
"custom_domain": true
}
],
"assets": {
"binding": "ASSETS",
"directory": ".open-next/assets"
},
"images": {
"binding": "IMAGES"
},
"services": [
{
"binding": "WORKER_SELF_REFERENCE",
"service": "compass"
}
],
"observability": {
"enabled": true
},
"d1_databases": [
{
"binding": "DB",
"database_name": "compass-db",
"database_id": "cd6983ff-d286-4042-a823-6b2433c9fba7",
"migrations_dir": "drizzle"
}
],
"vars": {
"WORKOS_REDIRECT_URI": "https://compass.openrangeconstruction.ltd/api/auth/callback"
}
}