From c76a9dc9788efcaa26bcc6ff2c37c34bc941f805 Mon Sep 17 00:00:00 2001 From: Michael Kinder Date: Mon, 29 Jun 2026 21:02:03 -0400 Subject: [PATCH] add nixpacks config --- nixpacks.toml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 nixpacks.toml diff --git a/nixpacks.toml b/nixpacks.toml new file mode 100644 index 0000000..4ec6304 --- /dev/null +++ b/nixpacks.toml @@ -0,0 +1,9 @@ +# nixpacks.toml + +# 1. Define the build phase to compile your Astro static files +[phases.build] +cmds = ["npm run build"] + +# 2. Tell Nixpacks how to run the web server and keep the container alive +[start] +cmd = "npx serve dist --port 3000"