From e7c652460efaf482d59f3d91d61a40cbe1e7f213 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 23 Nov 2025 03:36:08 -0800 Subject: [PATCH] fix: add yarn to nixpacks for psn-api dependency --- nixpacks.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 nixpacks.toml diff --git a/nixpacks.toml b/nixpacks.toml new file mode 100644 index 0000000..6eb1348 --- /dev/null +++ b/nixpacks.toml @@ -0,0 +1,11 @@ +[phases.setup] +nixPkgs = ["nodejs_20", "yarn"] + +[phases.install] +cmds = ["pnpm i --frozen-lockfile"] + +[phases.build] +cmds = ["./scripts/railway-build.sh"] + +[start] +cmd = "pnpm run start"