diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 6e78d19..4ed3737 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -2,18 +2,8 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/config/defaults.ini b/config/defaults.ini index 8735c7e..2a6f045 100644 --- a/config/defaults.ini +++ b/config/defaults.ini @@ -41,7 +41,7 @@ SynchronizationSchedule=5 * * * * ; Number of threads running the scheduler ; Since most of the jobs scheduled are downloads, there is no advantage to having ; a higher concurrency -SchedulerConcurrency=1 +SchedulerConcurrency=3 ; Default user settings @@ -69,7 +69,7 @@ DownloadMaxAttempts=3 DownloadOrder=playlist ; Path where downloaded videos are stored -DownloadPath=${env:USERPROFILE}${env:HOME}/Downloads +DownloadPath=data/videos ; A pattern which describes how downloaded files are organized. Extensions are automatically appended. ; Supported fields: channel, channel_id, playlist, playlist_id, playlist_index, title, id diff --git a/docker/init.sh b/docker/init.sh index f5772be..8608bf6 100755 --- a/docker/init.sh +++ b/docker/init.sh @@ -1,4 +1,4 @@ #!/bin/bash ./manage.py migrate -gunicorn -b 0.0.0.0:8000 -w 1 YtManager.wsgi +gunicorn -b 0.0.0.0:8000 -w 4 YtManager.wsgi