From 6f6bea7aabf4d220a16de61abd1f4c733dc4f2c1 Mon Sep 17 00:00:00 2001 From: chark1es Date: Thu, 23 Jan 2025 14:44:11 -0800 Subject: [PATCH] Create nixpacks.toml --- nixpacks.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 nixpacks.toml 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"