diff --git a/nixpacks.toml b/nixpacks.toml new file mode 100644 index 0000000..6cec3a1 --- /dev/null +++ b/nixpacks.toml @@ -0,0 +1,18 @@ +[phases.setup] +commands = [ + "npx prisma generate", + "npx prisma migrate deploy" +] + +[phases.install] +commands = [ + "npm install" +] + +[phases.build] +commands = [ + "npm run build" +] + +[start] +cmd = "node .output/server/index.mjs"