mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-18 06:05:09 +00:00
28 lines
775 B
Text
28 lines
775 B
Text
# Academy LMS Environment Configuration
|
|
|
|
# REQUIRED: Database Configuration
|
|
MARIADB_ROOT_PASSWORD=ati
|
|
ADMIN_PASSWORD=ati
|
|
|
|
# REQUIRED: AI Configuration
|
|
OPENAI_API_KEY=your_openai_api_key_here
|
|
ANTHROPIC_API_KEY=your_anthropic_api_key_here # Optional, but recommended
|
|
|
|
# REQUIRED: LangChain Database
|
|
LANGCHAIN_DB_NAME=langchain_db
|
|
LANGCHAIN_DB_USER=langchain_user
|
|
LANGCHAIN_DB_PASSWORD=langchain_pass
|
|
|
|
# Service URLs (usually don't need to change)
|
|
AI_TUTOR_API_URL=http://langchain-service:8000
|
|
|
|
# Optional: Frappe Site Configuration
|
|
FRAPPE_SITE_NAME_HEADER=$$host # Use $$host for multi-site support
|
|
|
|
# Optional: Environment Settings
|
|
LANGCHAIN_ENV=production
|
|
LANGCHAIN_DEBUG=false
|
|
|
|
# Optional: Custom Image Tags (for development)
|
|
# CUSTOM_TAG=develop
|
|
# LANGCHAIN_TAG=develop
|