52 lines
1.3 KiB
Plaintext
52 lines
1.3 KiB
Plaintext
# General environment variables
|
|
TZ=London/Europe
|
|
|
|
# PostgreSQL
|
|
POSTGRES_HOST=postgres
|
|
POSTGRES_PORT=5432
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=postgres
|
|
POSTGRES_DB=knightcrawler
|
|
|
|
# MongoDB
|
|
MONGODB_HOST=mongodb
|
|
MONGODB_PORT=27017
|
|
MONGODB_DB=knightcrawler
|
|
MONGODB_USER=mongo
|
|
MONGODB_PASSWORD=mongo
|
|
|
|
# Metadata
|
|
## Only used if DATA_ONCE is set to false. If true, the schedule is ignored
|
|
METADATA_DOWNLOAD_IMDB_DATA_SCHEDULE=0 0 1 * * *
|
|
## If true, the metadata will be downloaded once and then the schedule will be ignored
|
|
METADATA_DOWNLOAD_IMDB_DATA_ONCE=true
|
|
|
|
# Addon
|
|
DEBUG_MODE=false
|
|
|
|
# Consumer
|
|
RABBIT_URI=amqp://guest:guest@rabbitmq:5672/?heartbeat=30
|
|
QUEUE_NAME=ingested
|
|
JOB_CONCURRENCY=5
|
|
JOBS_ENABLED=true
|
|
## can be debug for extra verbosity (a lot more verbosity - useful for development)
|
|
LOG_LEVEL=info
|
|
MAX_CONNECTIONS_PER_TORRENT=10
|
|
MAX_CONNECTIONS_OVERALL=100
|
|
TORRENT_TIMEOUT=30000
|
|
UDP_TRACKERS_ENABLED=true
|
|
CONSUMER_REPLICAS=3
|
|
## Fix for #66 - toggle on for development
|
|
AUTO_CREATE_AND_APPLY_MIGRATIONS=false
|
|
|
|
# Producer
|
|
RabbitMqConfiguration__Host=rabbitmq
|
|
RabbitMqConfiguration__QueueName=ingested
|
|
RabbitMqConfiguration__Username=guest
|
|
RabbitMqConfiguration__Password=guest
|
|
RabbitMqConfiguration__Durable=true
|
|
RabbitMqConfiguration__MaxQueueSize=0
|
|
RabbitMqConfiguration__MaxPublishBatchSize=500
|
|
RabbitMqConfiguration__PublishIntervalInSeconds=10
|
|
GithubSettings__PAT=
|