Skip to content

Commit 9c14f97

Browse files
fix(bot): add explicit process command to fly.toml (#2017)
The Fly app was running the Probot CLI instead of the programmatic server.ts because the Dockerfile CMD was being overridden. Adding an explicit [processes] section ensures Fly uses the correct entrypoint (node ./lib/server.js) which reads GITHUB_BOT_* env vars. Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
1 parent 794359a commit 9c14f97

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

apps/bot/fly.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ primary_region = 'sjc'
99
[build]
1010
dockerfile = "Dockerfile"
1111

12+
[processes]
13+
app = "node ./lib/server.js"
14+
1215
[deploy]
1316
strategy = 'bluegreen'
1417

0 commit comments

Comments
 (0)