From 1871af8fc6147ee3a23a5e959229da50fe9f2a25 Mon Sep 17 00:00:00 2001 From: Zac Gaetano Date: Sat, 4 Apr 2026 22:40:49 -0400 Subject: [PATCH] Add .env.example --- .env.example | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..d479c58 --- /dev/null +++ b/.env.example @@ -0,0 +1,13 @@ +# Claude API Configuration +CLAUDE_API_KEY=sk-ant-your-key-here + +# Application Settings +APP_ENV=production +LOG_LEVEL=INFO + +# Docker Settings +PYTHONUNBUFFERED=1 + +# Port Configuration (optional, default 3000/8000) +UI_PORT=3000 +API_PORT=8000