mirror of
https://github.com/FunnyWolf/agentic-soc-platform.git
synced 2026-08-22 13:12:56 +02:00
28 lines
706 B
Bash
28 lines
706 B
Bash
# Django application settings.
|
|
DJANGO_SECRET_KEY=change-me-to-a-random-32-byte-minimum-secret
|
|
# DJANGO_DEBUG defaults to false. Set to true only for local development.
|
|
# DJANGO_DEBUG=true
|
|
DJANGO_ALLOWED_HOSTS=*
|
|
|
|
# PostgreSQL database settings.
|
|
POSTGRES_DB=asp
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=change-me
|
|
POSTGRES_HOST=aspsirp.com
|
|
POSTGRES_PORT=5432
|
|
POSTGRES_CONN_MAX_AGE=0
|
|
POSTGRES_CONN_HEALTH_CHECKS=true
|
|
|
|
# Redis cache settings.
|
|
REDIS_HOST=aspsirp.com
|
|
REDIS_PORT=6379
|
|
REDIS_DB=1
|
|
REDIS_PASSWORD=change-me
|
|
|
|
# RustFS / S3-compatible object storage settings.
|
|
RUSTFS_ENDPOINT_URL=http://aspsirp.com:9000
|
|
RUSTFS_BUCKET=asp
|
|
RUSTFS_ACCESS_KEY=change-me
|
|
RUSTFS_SECRET_KEY=change-me
|
|
RUSTFS_REGION=us-east-1
|