New files from Fly.io Launch

This commit is contained in:
Fly.io 2026-06-27 21:07:32 +00:00
parent 1eb7a0d924
commit a24f6a9f9c
3 changed files with 31 additions and 0 deletions

2
.dockerignore Normal file
View file

@ -0,0 +1,2 @@
fly.toml
.venv

2
Procfile Normal file
View file

@ -0,0 +1,2 @@
# TODO: Modify this Procfile to fit your needs
web: gunicorn app:app

27
fly.toml Normal file
View file

@ -0,0 +1,27 @@
# fly.toml app configuration file generated for silversight on 2026-06-27T21:07:27Z
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
app = 'silversight'
primary_region = 'iad'
[build]
builder = 'paketobuildpacks/builder:base'
[env]
PORT = '8080'
[http_service]
internal_port = 8080
force_https = true
auto_stop_machines = 'stop'
auto_start_machines = true
min_machines_running = 0
processes = ['app']
[[vm]]
memory = '1gb'
cpu_kind = 'shared'
cpus = 1
memory_mb = 256