Created nixpacks.toml for our fellow coolify users (me)

This commit is contained in:
root 2025-03-10 20:46:58 -05:00
parent 2d44ab8f73
commit 56e07431cb

18
nixpacks.toml Normal file
View file

@ -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"