-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrailway.basic.json
More file actions
69 lines (69 loc) · 1.66 KB
/
Copy pathrailway.basic.json
File metadata and controls
69 lines (69 loc) · 1.66 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"$schema": "https://railway.com/railway.schema.json",
"build": {
"builder": "NIXPACKS",
"buildCommand": "npm ci && npm run build",
"watchPatterns": [
"src/**",
"public/**",
"package.json",
"package-lock.json",
"next.config.ts",
"tsconfig.json",
".env.example",
"railway.json"
]
},
"deploy": {
"startCommand": "node server.js",
"healthcheckPath": "/api/health",
"healthcheckTimeout": 60,
"restartPolicyType": "ON_FAILURE",
"restartPolicyMaxRetries": 3,
"overlapSeconds": 30,
"drainingSeconds": 15
},
"environments": {
"production": {
"deploy": {
"healthcheckTimeout": 120,
"overlapSeconds": 60,
"drainingSeconds": 30,
"restartPolicyType": "ALWAYS",
"restartPolicyMaxRetries": 5
}
},
"staging": {
"deploy": {
"startCommand": "npm start",
"healthcheckTimeout": 45,
"overlapSeconds": 30,
"restartPolicyMaxRetries": 2
}
},
"development": {
"build": {
"watchPatterns": ["src/**", "public/**", "*.config.*", ".env*"]
},
"deploy": {
"startCommand": "npm run dev",
"healthcheckTimeout": 30,
"restartPolicyType": "ALWAYS",
"restartPolicyMaxRetries": 1
}
},
"pr": {
"build": {
"buildCommand": "npm ci && npm run build",
"watchPatterns": ["src/**", "public/**", "package.json"]
},
"deploy": {
"startCommand": "npm start",
"healthcheckTimeout": 30,
"restartPolicyMaxRetries": 1,
"overlapSeconds": 15,
"drainingSeconds": 10
}
}
}
}