From dfe61d1b25b15bba3b80ed2f209562de260e5b5f Mon Sep 17 00:00:00 2001 From: chark1es Date: Thu, 23 Jan 2025 14:58:54 -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..c8a58a6 --- /dev/null +++ b/nixpacks.toml @@ -0,0 +1,17 @@ +[phases.install] +commands = [ + "npm install -g bun" +] + +[phases.setup] +commands = [ + "bun install", +] + +[phases.build] +commands = [ + "bun build", +] + +[phases.start] +commands = ["bun run start"]