Amending env thing

This commit is contained in:
DominicJamesWhite 2025-04-09 15:11:28 +02:00
parent 2d8b5ebc61
commit 4781861a92
2 changed files with 5 additions and 8 deletions

View File

@ -1,7 +1,7 @@
# Your openai api key. (required) # Your openai api key.
OPENAI_API_KEY= OPENAI_API_KEY=
# DeepSeek Api Key. (Optional) # DeepSeek Api Key.
DEEPSEEK_API_KEY= DEEPSEEK_API_KEY=
# Access password, separated by comma. (optional) # Access password, separated by comma. (optional)
@ -16,12 +16,12 @@ PROXY_URL=http://localhost:7890
ENABLE_MCP= ENABLE_MCP=
# Humanitec token for authenticating humctl in the container (required if ENABLE_MCP is true) # Humanitec token for authenticating humctl in the container (required if ENABLE_MCP is true)
HUMANITEC_TOKEN=-joeSywk8dCOCzD7f8Etu1axDyGyAd1QK8_emcBTSn_c HUMANITEC_TOKEN=
# (optional) # (optional)
# Default: Empty # Default: Empty
# Google Gemini Pro API key, set if you want to use Google Gemini Pro API. # 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) # (optional)
# Default: https://generativelanguage.googleapis.com/ # Default: https://generativelanguage.googleapis.com/
@ -65,7 +65,7 @@ CUSTOM_MODELS=
# (optional) # (optional)
# Default: Empty # Default: Empty
# Change default model # Change default model
DEFAULT_MODEL=gemini-2.5-pro-preview-03-25 DEFAULT_MODEL=
# anthropic claude Api Key.(optional) # anthropic claude Api Key.(optional)
ANTHROPIC_API_KEY= ANTHROPIC_API_KEY=

View File

@ -43,9 +43,6 @@ COPY --from=builder /app/.next/server ./.next/server
COPY --from=builder /app/bin /app/bin COPY --from=builder /app/bin /app/bin
RUN chmod +x /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 EXPOSE 3000
CMD if [ -n "$PROXY_URL" ]; then \ CMD if [ -n "$PROXY_URL" ]; then \