diff --git a/.npmrc b/.npmrc index b6f27f1..e7017bf 100644 --- a/.npmrc +++ b/.npmrc @@ -1 +1,2 @@ -engine-strict=true +# Temporarily disabled for Railway build debugging +# engine-strict=true diff --git a/nixpacks.toml b/nixpacks.toml new file mode 100644 index 0000000..8c7db04 --- /dev/null +++ b/nixpacks.toml @@ -0,0 +1,15 @@ +[phases.setup] +nixPkgs = ["nodejs_20"] + +[phases.install] +cmds = [ + "corepack enable", + "corepack prepare pnpm@9.15.9 --activate", + "pnpm install --frozen-lockfile" +] + +[phases.build] +cmds = ["./scripts/railway-build.sh"] + +[start] +cmd = "pnpm run start"