-
Notifications
You must be signed in to change notification settings - Fork 0
/
flightcontrol.json
62 lines (62 loc) · 1.7 KB
/
flightcontrol.json
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
{
"envVariables": {
"APP_KEY": "base64:rPzZRu2cKg1SCaICy7qooOzqgZJPWQHJBVCLAuh0KpA="
},
"environments": [
{
"id": "production-012wn26j1",
"name": "Production",
"region": "us-east-2",
"source": {
"pr": false,
"branch": "main",
"trigger": "push"
},
"services": [
{
"id": "laravel",
"cpu": 0.25,
"name": "Laravel",
"port": 8000,
"type": "fargate",
"memory": 0.5,
"basePath": ".",
"buildType": "nixpacks",
"autoscaling": {
"cpuThreshold": 70,
"memoryThreshold": 70,
"cooldownTimerSecs": 300,
"requestsPerTarget": 500
},
"envVariables": {},
"maxInstances": 1,
"minInstances": 1,
"startCommand": "php artisan serve --host=0.0.0.0 ",
"installCommand": "npm install && composer install && php artisan migrate --force",
"healthCheckPath": "/health",
"enableCloudfrontSwr": false,
"versionHistoryCount": 10
},
{
"id": "dbdatabase",
"name": "Database",
"port": 5432,
"type": "rds",
"engine": "postgres",
"private": false,
"storage": 20,
"maxStorage": 100,
"instanceSize": "db.t4g.micro",
"engineVersion": "15",
"deletionProtection": false,
"applyChangesImmediately": false,
"autoUpgradeMinorVersions": true,
"connectionStringEnvVarName": "DATABASE_URL"
}
],
"envVariables": {
"APP_KEY": "base64:rPzZRu2cKg1SCaICy7qooOzqgZJPWQHJBVCLAuh0KpA="
}
}
]
}