FlightcontrolNitro supports deploying to AWS via Flightcontrol with minimal configuration.
On a high level, the steps you will need to follow to deploy a project for the first time are:
flightcontrol.json.GUI config type.flightcontrol.jsonflightcontrol.json config type.flightcontrol.json. Here is an example configuration that creates an AWS fargate service for your app:{
"$schema": "https://app.flightcontrol.dev/schema.json",
"environments": [
{
"id": "production",
"name": "Production",
"region": "us-west-2",
"source": {
"branch": "main"
},
"services": [
{
"id": "nitro",
"buildType": "nixpacks",
"name": "My Nitro site",
"type": "fargate",
"domain": "www.yourdomain.com",
"outputDirectory": ".output",
"startCommand": "node .output/server/index.mjs",
"cpu": 0.25,
"memory": 0.5
}
]
}
]
}