From c0270b5c41ed88ae43706a139d0a677241e69c57 Mon Sep 17 00:00:00 2001 From: bendtherules Date: Thu, 16 Apr 2026 17:28:52 +0530 Subject: [PATCH] feat: add initial Nixpacks configuration for deployment --- 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..a7b82e2 --- /dev/null +++ b/nixpacks.toml @@ -0,0 +1,17 @@ +# Nixpacks configuration for ask262 +# Used by Railway, Coolify, and other PaaS platforms +# Docs: https://nixpacks.com/docs/configuration/file + +[phases.build] +cmds = ["bun install"] + +[phases.setup] +nixPkgs = ["bun"] + +[start] +cmd = "bun run ask262-http" + +[variables] +# Default environment variables +ASK262_PORT = "8080" +ASK262_EMBEDDING_PROVIDER = "fireworks"