diff --git a/nixpacks.toml b/nixpacks.toml new file mode 100644 index 0000000..9480c5d --- /dev/null +++ b/nixpacks.toml @@ -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"