addon and consumer. Todo: producer Change DATABASE_URI to be generic POSTGRES variables DOES NOT WORK - First pass at upgrading environment variables PostgreSQL environment variables have been split for addon and consumer. ENABLE_SYNC hard coded as `true` MongoDB variables update. Make the addon code more similar to the consumer code Get some parity between addon and consumer
40 lines
1.0 KiB
Bash
40 lines
1.0 KiB
Bash
# 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
|
|
MONGO_INITDB_ROOT_USERNAME=mongo
|
|
MONGO_INITDB_ROOT_PASSWORD=mongo
|
|
|
|
# Addon
|
|
DEBUG_MODE=false
|
|
|
|
# Consumer
|
|
RABBIT_URI=amqp://guest:guest@rabbitmq:5672/?heartbeat=30
|
|
QUEUE_NAME=ingested
|
|
JOB_CONCURRENCY=5
|
|
JOBS_ENABLED=true
|
|
MAX_SINGLE_TORRENT_CONNECTIONS=10
|
|
TORRENT_TIMEOUT=30000
|
|
UDP_TRACKERS_ENABLED=true
|
|
|
|
# Producer
|
|
ScrapeConfiguration__StorageConnectionString=host=postgres;username=postgres;password=postgres;database=knightcrawler;
|
|
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= |