diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 00000000..94e52f4d --- /dev/null +++ b/.dockerignore @@ -0,0 +1,2 @@ +fly.toml +.venv diff --git a/Procfile b/Procfile new file mode 100644 index 00000000..8c67bbbe --- /dev/null +++ b/Procfile @@ -0,0 +1,2 @@ +# TODO: Modify this Procfile to fit your needs +web: gunicorn app:app diff --git a/fly.toml b/fly.toml new file mode 100644 index 00000000..7cbb0326 --- /dev/null +++ b/fly.toml @@ -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