-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathwrangler.toml
More file actions
54 lines (45 loc) · 1.32 KB
/
wrangler.toml
File metadata and controls
54 lines (45 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name = "apis-guru"
compatibility_date = "2025-03-25"
compatibility_flags = ["nodejs_compat"]
main = ".open-next/worker.js"
[assets]
directory = ".open-next/assets"
binding = "ASSETS"
[[d1_databases]]
binding = "DB"
database_name = "apis-guru-data-dev"
database_id = "1090248d-84f7-4ffe-ab4f-5fd27c98d3e0"
migrations_dir = "migrations"
[[d1_databases]]
binding = "PROD_DB"
database_name = "apis-guru-data"
database_id = "660cdfd3-7c06-44ea-8e6d-f658f4fc39ca"
migrations_dir = "migrations"
[vars]
SYNC_URL = "https://api.apis.guru/v2/list.json"
BATCH_SIZE = "100"
MAX_PAGE_SIZE = "100"
DEFAULT_PAGE_SIZE = "20"
SENTRY_DSN = "https://8296abef723d97e7b8d5a15d1e93be1f@o4509816683823104.ingest.us.sentry.io/4509831375683584"
[env.preview]
[[env.preview.d1_databases]]
binding = "DB"
database_name = "apis-guru-data-dev"
database_id = "1090248d-84f7-4ffe-ab4f-5fd27c98d3e0"
migrations_dir = "migrations"
[env.preview.vars]
SYNC_URL = "https://api.apis.guru/v2/list.json"
BATCH_SIZE = "100"
MAX_PAGE_SIZE = "100"
DEFAULT_PAGE_SIZE = "20"
[env.production]
[[env.production.d1_databases]]
binding = "DB"
database_name = "apis-guru-data"
database_id = "660cdfd3-7c06-44ea-8e6d-f658f4fc39ca"
migrations_dir = "migrations"
[env.production.vars]
SYNC_URL = "https://api.apis.guru/v2/list.json"
BATCH_SIZE = "100"
MAX_PAGE_SIZE = "100"
DEFAULT_PAGE_SIZE = "20"