-
Notifications
You must be signed in to change notification settings - Fork 507
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Co-authored-by: ModupeD <69601432+ModupeD@users.noreply.github.com> Co-authored-by: Pooya Parsa <pooya@pi0.io>
- Loading branch information
1 parent
58cde15
commit 3aa642b
Showing
3 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# Flightcontrol | ||
|
||
**Preset:** `flightcontrol` ([switch to this preset](/deploy/#changing-the-deployment-preset)) | ||
|
||
Nitro supports deploying to [AWS via Flightcontrol](https://flightcontrol.dev?ref=nitro) with minimal configuration. | ||
|
||
::alert | ||
Flight control has zero config support for [Nuxt](https://nuxt.com/) projects. | ||
:: | ||
|
||
### Set Up your Flightcontrol account | ||
|
||
On a high level, the steps you will need to follow to deploy a project for the first time are: | ||
|
||
1. Create an account at [Flightcontrol](https://app.flightcontrol.dev/signup?ref=nitro) | ||
2. Create an account at [AWS](https://portal.aws.amazon.com/billing/signup) (if you don't already have one) | ||
3. Link your AWS account to the FlightControl | ||
4. Authorize the Flightcontrol GitHub App to access your chosen repositories, public or private. | ||
5. Create a Flightcontrol project with configuration via the Dashboard or with configuration via `flightcontrol.json`. | ||
|
||
### Create a Project with Configuration via the Dashboard | ||
|
||
1. Create a Flightcontrol project from the Dashboard. Select a repository for the source. | ||
2. Select the `GUI` config type. | ||
3. Select the Nuxt preset. This preset will also work for any Nitro-based applications. | ||
4. Select your preferred AWS server size. | ||
5. Submit the new project form. | ||
|
||
### Create a Project with Configuration via `flightcontrol.json` | ||
|
||
1. Create a Flightcontrol project from your dashboard. Select a repository for the source. | ||
2. Select the `flightcontrol.json` config type. | ||
3. Add a new file at the root of your repository called `flightcontrol.json`. Here is an example configuration that creates an AWS fargate service for your app: | ||
|
||
```json | ||
{ | ||
"$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 | ||
} | ||
] | ||
} | ||
] | ||
} | ||
``` | ||
|
||
4. Submit the new project form. | ||
|
||
Learn more about Flightcontrol's [configuration](https://www.flightcontrol.dev/docs?ref=nitro). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { defineNitroPreset } from "../preset"; | ||
|
||
export const flightControl = defineNitroPreset({ | ||
extends: "node-server", | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters