forked from flightcontrol-demos/remix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflightcontrol.json
More file actions
58 lines (58 loc) · 1.61 KB
/
flightcontrol.json
File metadata and controls
58 lines (58 loc) · 1.61 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
{
"$schema": "https://app.flightcontrol.dev/schema.json",
"envVariables": {},
"environments": [
{
"name": "Remix Demo",
"region": "us-east-1",
"source": {"pr": false, "branch": "main", "trigger": "push"},
"services": [
{
"id": "remix-app",
"name": "Remix App",
"buildType": "nixpacks",
"cpu": 0.25,
"memory": 0.5,
"containerInsights": false,
"minInstances": 1,
"maxInstances": 1,
"versionHistoryCount": 10,
"basePath": ".",
"dockerfilePath": "Dockerfile",
"dockerContext": ".",
"envVariables": {
"SESSION_SECRET_KEY": "7404a63f7be8ef26942ee8a7f4bb25d4"
},
"autoscaling": {
"cpuThreshold": 70,
"memoryThreshold": 70,
"cooldownTimerSecs": 300,
"requestsPerTarget": 500
},
"type": "fargate",
"healthCheckPath": "/healthcheck",
"enableCloudfrontSwr": false,
"port": 8080
},
{
"id": "database",
"name": "Database",
"type": "rds",
"instanceSize": "db.t4g.micro",
"private": false,
"storage": 20,
"maxStorage": 100,
"autoUpgradeMinorVersions": true,
"applyChangesImmediately": false,
"deletionProtection": false,
"connectionStringEnvVarName": "DATABASE_URL",
"engine": "postgres",
"engineVersion": "15",
"port": 5432
}
],
"envVariables": {},
"id": "remix"
}
]
}