Source code for my personal quote bot project.

ci: fly deploy configuration.

+18 -2
-1
.gitignore
··· 4 4 .venv/ 5 5 .zed 6 6 .github/ 7 - fly.toml 8 7 .DS_Store 9 8 .env 10 9 assets/**
+3 -1
.tangled/workflows/build.yml
··· 26 26 docker://registry.fly.io/${APP_NAME}:latest \ 27 27 --dest-creds x:"$FLY_ACCESS_TOKEN" \ 28 28 --format v2s2 29 - 30 29 environment: 31 30 APP_NAME: "audquotes" 31 + - name: "Deploy app to Fly.io" 32 + command: > 33 + flyctl -t "$FLY_ACCESS_TOKEN" deploy --remote-only
+15
fly.toml
··· 1 + app = "audquotes" 2 + primary_region = "mad" 3 + 4 + [[vm]] 5 + memory = "1gb" 6 + cpu_kind = "shared" 7 + cpus = 1 8 + 9 + [http_service] 10 + internal_port = 8080 11 + force_https = true 12 + auto_stop_machines = false 13 + auto_start_machines = true 14 + min_machines_running = 1 15 + processes = ["app"]