refactor
This commit is contained in:
+16
-10
@@ -26,8 +26,14 @@ VISION_MAX_IMAGES=8
|
||||
# JSON-экстракция памяти отдельной моделью (если основная капризничает):
|
||||
# MEMORY_EXTRACT_MODEL=deepseek/deepseek-chat
|
||||
|
||||
# App
|
||||
DATABASE_URL=sqlite:///./data/assistant.db
|
||||
# PostgreSQL (docker compose default)
|
||||
POSTGRES_USER=assistant
|
||||
POSTGRES_PASSWORD=change-me-postgres-password
|
||||
POSTGRES_DB=assistant
|
||||
|
||||
# App — docker: postgresql+psycopg2://assistant:PASSWORD@postgres:5432/assistant
|
||||
# local dev without docker: sqlite:///./data/assistant.db
|
||||
DATABASE_URL=postgresql+psycopg2://assistant:change-me-postgres-password@postgres:5432/assistant
|
||||
CORS_ORIGINS=http://localhost:5173,http://localhost:8080,http://localhost:3080
|
||||
SYSTEM_PROMPT_PATH=./prompts/assistant.md
|
||||
MEMORY_AUTO_EXTRACT=true
|
||||
@@ -46,16 +52,16 @@ OPENFOODFACTS_BASE_URL=https://world.openfoodfacts.org
|
||||
FITNESS_REMINDERS_ENABLED=true
|
||||
REMINDERS_ENABLED=true
|
||||
|
||||
# Taiga (on host :9000, nginx → taiga.grigowashere.ru)
|
||||
# Taiga (on host :9000 — replace with your public URL)
|
||||
TAIGA_BASE_URL=http://host.docker.internal:9000
|
||||
TAIGA_USERNAME=your_taiga_user
|
||||
TAIGA_PASSWORD=your_taiga_password
|
||||
TAIGA_PUBLIC_URL=https://taiga.grigowashere.ru
|
||||
TAIGA_PUBLIC_URL=https://taiga.example.com
|
||||
|
||||
# Gitea (on host :3000, nginx → git.grigowashere.ru)
|
||||
# Gitea (on host :3000 — replace with your public URL)
|
||||
GITEA_BASE_URL=http://host.docker.internal:3000
|
||||
GITEA_TOKEN=your_gitea_api_token
|
||||
GITEA_PUBLIC_URL=https://git.grigowashere.ru
|
||||
GITEA_PUBLIC_URL=https://git.example.com
|
||||
GITEA_WEBHOOK_SECRET=generate_a_random_secret
|
||||
|
||||
# Gitea webhook URL (repo Settings → Webhooks):
|
||||
@@ -64,8 +70,8 @@ GITEA_WEBHOOK_SECRET=generate_a_random_secret
|
||||
|
||||
REPOS_DIR=/data/repos
|
||||
|
||||
# Homelab — GPU PC 192.168.1.109
|
||||
OPENMETEO_BASE_URL=http://192.168.1.109:8085
|
||||
# Homelab — replace host with your weather/ComfyUI server
|
||||
OPENMETEO_BASE_URL=http://host.docker.internal:8085
|
||||
WEATHER_LAT=59.9343
|
||||
WEATHER_LON=30.3351
|
||||
WEATHER_LOCATION_NAME=Санкт-Петербург
|
||||
@@ -85,8 +91,8 @@ MORNING_DIGEST_ENABLED=true
|
||||
MORNING_DIGEST_HOUR=8
|
||||
MORNING_DIGEST_MINUTE=0
|
||||
|
||||
# ComfyUI on GPU PC (Anima split-model — как в aiChatBot)
|
||||
COMFYUI_BASE_URL=http://192.168.1.109:8188
|
||||
# ComfyUI (Anima split-model)
|
||||
COMFYUI_BASE_URL=http://host.docker.internal:8188
|
||||
COMFYUI_ENABLED=true
|
||||
# Anima: UNET+CLIP+VAE, CHECKPOINT пустой. Для SD1.5/Pony — задай CHECKPOINT, очисти UNET.
|
||||
COMFYUI_CHECKPOINT=
|
||||
|
||||
Reference in New Issue
Block a user