-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
31 lines (27 loc) · 1.46 KB
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Important keys MUST be changed
SECRET_KEY = SET_A_RANDOM_KEY
MEILI_MASTER_KEY = SET_A_RANDOM_MEILI_KEY
MAINPATH = /mnt/Purple/docker/anomaly-ytdlp/ # where is app.py located?
################# #################
################# Container Names #################
################# #################
DOCKER_YTDL = ytdl
DOCKER_YTDLDB = ytdldb
DOCKER_YTDLREDIS = ytdlredis
DOCKER_YTDLMEILI = ytdlmeili
################# #################
################# Container Ports #################
################# #################
DOCKER_PORT_YTDL = 56000
DOCKER_PORT_YTDLDB = 56001
DOCKER_PORT_YTDLREDIS = 56002
DOCKER_PORT_YTDLMEILI = 56003
################# App changes #################
PAGENUMDISPLAYLIMIT = 15 # Show/forward or backward by 15 pages at a time
MEILILOC = /srv/docker/anomaly-ytdlp/ # this must be a drive connected physically to your system. NFS connected shares will not work.
################# Anything below change #################
################# at your own risk unless #################
################# you know what you're doing #################
MAX_WORKERS = 0 # Set to 0 for unlimited, or positive integer. Used for setting max number of workers to process through queue.
MAX_CONCURRENT_CONVERSIONS = 1 # Queue amount for conversion of video file to HLS
# Set to 0 for unlimited, or any positive integer. Used for setting max possible ffmpeg conversions.