From e69494929afdae6e2dc10e690f912a7d531a5417 Mon Sep 17 00:00:00 2001 From: Priyanka Punukollu Date: Thu, 26 Feb 2026 22:26:13 -0600 Subject: [PATCH] fix: force Nixpacks to use Python provider for Railway deploy package.json in repo root caused Nixpacks to detect Node.js instead of Python, breaking the uvicorn start command. nixpacks.toml pins the provider to python so the agent deploys correctly. Made-with: Cursor --- nixpacks.toml | 1 + 1 file changed, 1 insertion(+) create mode 100644 nixpacks.toml diff --git a/nixpacks.toml b/nixpacks.toml new file mode 100644 index 000000000..67ff69516 --- /dev/null +++ b/nixpacks.toml @@ -0,0 +1 @@ +providers = ["python"]