You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
314 B

providers = ["node"]
[variables]
NODE_VERSION = "22"
NPM_CONFIG_PRODUCTION = "false"
[phases.setup]
nixPkgs = ["openssl"]
[phases.install]
cmds = ["npm ci --legacy-peer-deps"]
[phases.build]
cmds = ["npx prisma generate", "npm run build:production"]
[start]
cmd = "npx prisma migrate deploy && npm run start"