|
| 1 | +# ============================================================================================ |
| 2 | +# IMPORTANT: DO NOT DELETE THIS FILE |
| 3 | +# -------------------------------------------------------------------------------------------- |
| 4 | +# This `.env.example` file is required for the repository. It serves as a reference template |
| 5 | +# showing the environment variables needed to run the project. Actual values must be provided |
| 6 | +# via Infisical or your own `.env` file, but this file should remain in version control. |
| 7 | +# |
| 8 | +# For setup instructions and details on configuring environment variables, see: |
| 9 | +# https://docs.heygaia.io/configuration/environment-variables |
| 10 | +# ============================================================================================ |
| 11 | + |
| 12 | +# Environment Configuration |
| 13 | +ENV=development # Environment type: development, staging, production |
| 14 | +DISABLE_PROFILING=true # Disable performance profiling in non-production environments |
| 15 | + |
| 16 | +# Infisical Secrets Management |
| 17 | +# Required for fetching secrets and API keys from Infisical |
| 18 | +INFISICAL_PROJECT_ID= # Project ID from Infisical dashboard |
| 19 | +INFISICAL_MACHINE_INDENTITY_CLIENT_ID= # Machine identity client ID for authentication |
| 20 | +INFISICAL_MACHINE_INDENTITY_CLIENT_SECRET= # Machine identity client secret for authentication |
| 21 | + |
| 22 | +# Optional: LangSmith for tracing (can also be stored in Infisical) |
| 23 | +LANGSMITH_TRACING=false # Enable LangSmith tracing |
| 24 | +LANGSMITH_API_KEY= # LangSmith API key |
| 25 | + |
| 26 | +# Note: All other API keys should be stored in Infisical, not in this .env file |
| 27 | +# This includes: OPENAI_API_KEY, GEMINI_API_KEY, etc. |
0 commit comments