From 1efbb1b0e4b82363f32a9b131ec13bd3724e8b0c Mon Sep 17 00:00:00 2001 From: itsrubberduck Date: Sun, 14 Sep 2025 23:20:11 +0200 Subject: [PATCH] add nixpacks --- .nixpacks.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .nixpacks.toml diff --git a/.nixpacks.toml b/.nixpacks.toml new file mode 100644 index 0000000..da99b8d --- /dev/null +++ b/.nixpacks.toml @@ -0,0 +1,12 @@ +[phases.setup] +nixPkgs = ["nodejs_22", "corepack"] + +[phases.install] +cmds = ["corepack enable", "yarn install --check-cache"] + +[phases.build] +cmds = ["yarn build"] + +[start] +cmd = "node .output/server/index.mjs" +