From ba893d646a519c36885f43a15c8a5bcaee64355c Mon Sep 17 00:00:00 2001 From: Ajax Davis Date: Thu, 4 Dec 2025 08:30:19 +1000 Subject: [PATCH] fix: add nixpacks.toml to configure Deno for Railway deployment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- apps/railway-executor/nixpacks.toml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 apps/railway-executor/nixpacks.toml diff --git a/apps/railway-executor/nixpacks.toml b/apps/railway-executor/nixpacks.toml new file mode 100644 index 0000000..4d28ad8 --- /dev/null +++ b/apps/railway-executor/nixpacks.toml @@ -0,0 +1,5 @@ +[phases.setup] +nixPkgs = ["deno"] + +[start] +cmd = "deno run --allow-net --allow-env server.ts"