fix: add nixpacks.toml to configure Deno for Railway deployment

Railway's Nixpacks builder needs explicit configuration to install Deno.
This adds nixpacks.toml to specify Deno as a required package.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Ajax Davis 2025-12-04 08:30:19 +10:00
parent d597a71eb4
commit ba893d646a

View file

@ -0,0 +1,5 @@
[phases.setup]
nixPkgs = ["deno"]
[start]
cmd = "deno run --allow-net --allow-env server.ts"