-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrailway.worker.json
More file actions
38 lines (38 loc) · 952 Bytes
/
Copy pathrailway.worker.json
File metadata and controls
38 lines (38 loc) · 952 Bytes
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
{
"$schema": "https://railway.com/railway.schema.json",
"build": {
"builder": "DOCKERFILE",
"dockerfilePath": "Dockerfile.worker",
"watchPatterns": [
"/Dockerfile.worker",
"/.dockerignore",
"/.npmrc",
"/.nvmrc",
"/package.json",
"/package-lock.json",
"/tsconfig.json",
"/railway.worker.json",
"/data/**",
"/src/lib/**",
"/src/data/**",
"/worker/**",
"/eval/docling/requirements.txt",
"/scripts/build-worker.mjs",
"/scripts/check-node-engine.cjs",
"/scripts/enable-server-only-stub.mjs",
"/scripts/install-git-hooks.mjs",
"/scripts/register-server-only.mjs",
"/scripts/resolve-tsx-cli.mjs",
"/scripts/run-tsx.mjs",
"/tests/stubs/server-only.ts"
]
},
"deploy": {
"restartPolicyType": "ALWAYS",
"multiRegionConfig": {
"asia-southeast1-eqsg3a": {
"numReplicas": 1
}
}
}
}