From 4781861a9208b6ad1cb51acea0cce1b4f798bb99 Mon Sep 17 00:00:00 2001 From: DominicJamesWhite Date: Wed, 9 Apr 2025 15:11:28 +0200 Subject: [PATCH] Amending env thing --- .env.template | 10 +++++----- Dockerfile | 3 --- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/.env.template b/.env.template index 01f5df5c2..0356330d7 100644 --- a/.env.template +++ b/.env.template @@ -1,7 +1,7 @@ -# Your openai api key. (required) +# Your openai api key. OPENAI_API_KEY= -# DeepSeek Api Key. (Optional) +# DeepSeek Api Key. DEEPSEEK_API_KEY= # Access password, separated by comma. (optional) @@ -16,12 +16,12 @@ PROXY_URL=http://localhost:7890 ENABLE_MCP= # Humanitec token for authenticating humctl in the container (required if ENABLE_MCP is true) -HUMANITEC_TOKEN=-joeSywk8dCOCzD7f8Etu1axDyGyAd1QK8_emcBTSn_c +HUMANITEC_TOKEN= # (optional) # Default: Empty # Google Gemini Pro API key, set if you want to use Google Gemini Pro API. -GOOGLE_API_KEY=AIzaSyAQ-8sZr5jdnCoLtqF_e63IB5sHuRNFx9k +GOOGLE_API_KEY= # (optional) # Default: https://generativelanguage.googleapis.com/ @@ -65,7 +65,7 @@ CUSTOM_MODELS= # (optional) # Default: Empty # Change default model -DEFAULT_MODEL=gemini-2.5-pro-preview-03-25 +DEFAULT_MODEL= # anthropic claude Api Key.(optional) ANTHROPIC_API_KEY= diff --git a/Dockerfile b/Dockerfile index 0941643fe..8a8ea4bc7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -43,9 +43,6 @@ COPY --from=builder /app/.next/server ./.next/server COPY --from=builder /app/bin /app/bin RUN chmod +x /app/bin/* -RUN mkdir -p /app/app/mcp && chmod 777 /app/app/mcp -COPY --from=builder /app/app/mcp/mcp_config.default.json /app/app/mcp/mcp_config.json - EXPOSE 3000 CMD if [ -n "$PROXY_URL" ]; then \