FastAPI + Celery + Redis + MariaDB stack with 6-service docker-compose. Includes project skeleton (config, database, models, tasks, migrations) and health endpoint with passing test. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
18 lines
271 B
Plaintext
18 lines
271 B
Plaintext
# Database
|
|
DB_ROOT_PASSWORD=rootpassword
|
|
DB_NAME=evosync
|
|
DB_USER=evosync
|
|
DB_PASSWORD=evosync
|
|
|
|
# App
|
|
SECRET_KEY=change-me-in-production
|
|
BASE_URL=https://evosync.ru
|
|
|
|
# Evotor
|
|
EVOTOR_APP_ID=
|
|
EVOTOR_WEBHOOK_SECRET=
|
|
|
|
# Celery Flower
|
|
FLOWER_USER=admin
|
|
FLOWER_PASSWORD=changeme
|