Files
winning-wallet-finder_github/nixpacks.toml
T
jaxperro 41f422ab17 Add Railway/Nixpacks build config (requirements.txt, nixpacks.toml, runtime.txt)
Pure-stdlib repo had no language signal, so Nixpacks failed to build an image.
requirements.txt (empty) triggers Python detection; nixpacks.toml pins python311
and sets the start command to the webhook receiver.
2026-06-13 17:01:43 -04:00

7 lines
158 B
TOML

# Explicit build config for Railway/Nixpacks (pure-stdlib Python service)
[phases.setup]
nixPkgs = ["python311"]
[start]
cmd = "python3 webhook_receiver.py"