diff --git a/.github/workflows/fly-deploy.yml b/.github/workflows/fly-deploy.yml index debb473..b0c246e 100644 --- a/.github/workflows/fly-deploy.yml +++ b/.github/workflows/fly-deploy.yml @@ -1,3 +1,5 @@ +# See https://fly.io/docs/app-guides/continuous-deployment-with-github-actions/ + name: Fly Deploy on: push: @@ -7,7 +9,7 @@ jobs: deploy: name: Deploy app runs-on: ubuntu-latest - concurrency: deploy-group + concurrency: deploy-group # optional: ensure only one action runs at a time steps: - uses: actions/checkout@v4 - uses: superfly/flyctl-actions/setup-flyctl@master diff --git a/fly.toml b/fly.toml index e0ccec8..4d68a4d 100644 --- a/fly.toml +++ b/fly.toml @@ -1,4 +1,4 @@ -# fly.toml app configuration file generated for atridotdad on 2024-10-19T22:21:23-06:00 +# fly.toml app configuration file generated for atridotdad on 2024-11-20T14:25:08-06:00 # # See https://fly.io/docs/reference/configuration/ for information about how to use this file. # @@ -9,12 +9,12 @@ primary_region = 'ord' [build] [http_service] -internal_port = 3000 -force_https = true -auto_stop_machines = 'suspend' -auto_start_machines = true -min_machines_running = 0 -processes = ['app'] + internal_port = 3000 + force_https = true + auto_stop_machines = 'suspend' + auto_start_machines = true + min_machines_running = 0 + processes = ['app'] [[vm]] -size = 'shared-cpu-1x' + size = 'shared-cpu-1x'