Create nixpacks.toml

This commit is contained in:
chark1es 2025-01-23 14:44:11 -08:00
parent ac197a67c7
commit 6f6bea7aab

17
nixpacks.toml Normal file
View file

@ -0,0 +1,17 @@
[phases.setup]
commands = [
"curl -fsSL https://bun.sh/install | bash",
"export PATH=$HOME/.bun/bin:$PATH"
]
[phases.build]
commands = [
"bun install",
"bun build"
]
[phases.start]
commands = ["bun start"]
[environment]
PATH = "$HOME/.bun/bin:$PATH"