Skip to content

Commit

Permalink
Remove fly.toml from .gitignore and add new fly.toml configuration fi…
Browse files Browse the repository at this point in the history
…le for Fly deployment, defining app settings and service parameters.
  • Loading branch information
tinypell3ts committed Jan 16, 2025
1 parent 89c1347 commit 090223b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
.env
fly.toml
node_modules
dist
22 changes: 22 additions & 0 deletions fly.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# fly.toml app configuration file generated for steve-agent on 2025-01-16T12:12:22Z
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#

app = 'steve-agent'
primary_region = 'lhr'

[build]

[http_service]
internal_port = 3000
force_https = true
auto_stop_machines = 'stop'
auto_start_machines = true
min_machines_running = 1
processes = ['app']

[[vm]]
memory = '1gb'
cpu_kind = 'shared'
cpus = 1

0 comments on commit 090223b

Please sign in to comment.