CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | app = "gluecron"
primary_region = "lhr"
[build]
dockerfile = "Dockerfile"
[env]
GIT_REPOS_PATH = "/app/repos"
PORT = "3000"
NODE_ENV = "production"
[http_service]
internal_port = 3000
force_https = true
auto_stop_machines = "suspend"
auto_start_machines = true
min_machines_running = 1
[http_service.concurrency]
type = "connections"
hard_limit = 250
soft_limit = 200
[deploy]
release_command = "bun run db:migrate"
[[vm]]
size = "shared-cpu-1x"
memory = "512mb"
[mounts]
source = "gluecron_repos"
destination = "/app/repos"
|