mirror of
https://github.com/fsecada01/Pygentic-AI.git
synced 2026-05-12 04:04:57 +00:00
✅ Local build verified successfully ✅ Environment variables complete ✅ CI/CD workflows updated ✅ Build process simplified (source copy vs git clone) ✅ All production-readiness fixes applied Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
60 lines
1.4 KiB
Plaintext
60 lines
1.4 KiB
Plaintext
# OpenAI Configuration
|
|
OPENAI_API_KEY=sk-proj-your-openai-api-key-here
|
|
OPENAI_MODEL=gpt-4o-mini
|
|
# OPENAI_MODEL=gpt-4o
|
|
|
|
# Anthropic Configuration
|
|
ANTHROPIC_API_KEY=sk-ant-your-anthropic-api-key-here
|
|
|
|
# Security
|
|
HTTPS_ONLY=False
|
|
SECRET_KEY=your-secret-key-here
|
|
|
|
# Local Database Configuration
|
|
LOCAL_DB_UN=pygentic_ai
|
|
LOCAL_DB_PW=your-local-db-password
|
|
LOCAL_DB_DB=fsecada_server
|
|
LOCAL_DB_HOST=localhost
|
|
LOCAL_DB_PORT=5433
|
|
|
|
# Cloud Database Configuration
|
|
CLOUD_DB_UN=pygentic_ai
|
|
CLOUD_DB_PW=your-cloud-db-password
|
|
CLOUD_DB_DB=fsecada_server
|
|
CLOUD_DB_HOST=pgserver.example.com
|
|
CLOUD_DB_PORT=5433
|
|
|
|
# Database Configuration
|
|
SQL_DIALECT=postgresql
|
|
|
|
# Application Environment
|
|
DEBUG=True
|
|
SERVER_ENV=dev
|
|
|
|
# Reddit API Configuration (for intelligence gathering)
|
|
REDDIT_MAX_INSIGHTS=5
|
|
REDDIT_MAX_INSIGHT_LENGTH=400
|
|
REDDIT_USER_AGENT=your-reddit-user-agent
|
|
REDDIT_CLIENT_ID=your-reddit-client-id
|
|
REDDIT_CLIENT_SECRET=your-reddit-client-secret
|
|
REDDIT_SUBREDDIT=python,kubernetes,devops,rust,selfhosted,algorithms,typescript,programming,webdev,strategy,DigitalMarketing,Entrepreneur
|
|
|
|
# Celery Configuration
|
|
CELERY_PORT=5052
|
|
FLOWER_USERNAME=admin
|
|
FLOWER_PASSWORD=your-flower-password-here
|
|
|
|
# Server Configuration
|
|
PORT=5051
|
|
INTERNAL_PORT=5051
|
|
WORKERS=4
|
|
TIMEOUT=120
|
|
|
|
# Docker Configuration (for compose.yaml)
|
|
IMAGE_TAG=main-latest
|
|
MEMORY_LIMIT=1024mb
|
|
MEMORY_RESERVATION=512mb
|
|
CELERY_MEMORY_LIMIT=512mb
|
|
CELERY_MEMORY_RESERVATION=256mb
|
|
DOCKER_HOST_IP=192.168.99.85
|