Files
2026-09-08 11:00:05 +05:30

69 lines
1.6 KiB
Bash

# Environment Configuration
APP_ENV=uat
# Server Configuration
HOST=127.0.0.1
PORT=20001
DEBUG=True
DB_HOST=106.51.105.22
DB_PORT=5432
DB_NAME=docqube_uat
DB_USER=docqube_user
DB_PASSWORD=d20kMfypQE8Z
DB_SSLMODE=disable
PGBOUNCER_PORT=6432
# Security Configuration
APP_SECRET=VBN20DIyTbuqRJKKpxB2C4aDVYRUENa1rdzFXPLXwxA
ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=60
# Redis Configuration
REDIS_HOST=106.51.105.22
REDIS_PORT=6391
REDIS_PASSWORD=JVCzB612F573hYwqZZ
CLAMAV_HOST=106.51.105.22
CLAMAV_PORT=3310
CLAMAV_TIMEOUT_SECONDS=20
CLAMAV_CHUNK_SIZE=1048576
STORAGE_DRIVE_DIR=storage_drive
API_BASE_URL=http://localhost:20001
# Google Auth Configuration
GOOGLE_CLIENT_ID=989963514121-nh9ibk3e4u1dh6jp4ql17tue7f9suk38.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=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
# AI & Models Configuration
OPENAI_API_KEY="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"
OPENAI_BASE_URL=https://integrate.api.nvidia.com/v1
OPENAI_MODEL=mistralai/mistral-medium-3-instruct
OPENAI_VISION_MODEL=meta/llama-3.2-90b-vision-instruct
MODEL_SERVER_URL=http://localhost:9000
# Logging Configuration
LOG_LEVEL=INFO
# CORS Configuration
CORS_ORIGINS=http://localhost:5173,http://127.0.0.1:5173
# Email Configuration
SMTP_HOST=smtp.hostinger.com
SMTP_PORT=465
SMTP_USER=info@maskantech.in
SMTP_PASSWORD=Infomaskan@123
MAIL_FROM=info@maskantech.in
SMTP_SECURE=True
# Frontend Configuration
FRONTEND_URL=http://localhost:5173
# whisper Model Configuration
WHISPER_MODEL=small
# Chat Redis Settings
CHAT_REDIS_MAX_MESSAGES=10
CHAT_REDIS_TTL_SECONDS=86400
CHAT_DAILY_CREDITS_LIMIT=1000