-
Notifications
You must be signed in to change notification settings - Fork 1
/
flightcontrol.json
47 lines (47 loc) · 1.26 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
{
"$schema": "https://app.flightcontrol.dev/schema.json",
"environments": [
{
"id": "production",
"name": "Production",
"region": "eu-central-1",
"source": {
"branch": "main"
},
"services": [
{
"id": "renu",
"name": "Renu",
"buildType": "nixpacks",
"type": "fargate",
"cpu": 0.5,
"memory": 1,
"domain": "renu.menu",
"minInstances": 2,
"maxInstances": 4,
"watchPaths": ["apps/web/**", "packages/database/**", "packages/shared/**", "packages/@integrations/**"],
"enableCloudfrontSwr": true,
"healthCheckPath": "/api/healthcheck",
"envVariables": {
"APP_ENV": "production",
"NIXPACKS_VERSION": "1.20.0",
"NIXPACKS_TURBO_APP_NAME": "web"
}
},
{
"id": "database",
"name": "Database",
"type": "rds",
"engine": "postgres",
"storage": 20,
"maxStorage": 100,
"engineVersion": "13",
"instanceSize": "db.t4g.micro",
"autoUpgradeMinorVersions": true,
"private": false,
"connectionStringEnvVarName": "DATABASE_URL"
}
]
}
]
}