Remove local_bin

This commit is contained in:
ABelliqueux 2022-10-21 15:28:27 +02:00
parent df50760227
commit 8c401ab941
2 changed files with 0 additions and 2 deletions

1
app.py
View File

@ -25,7 +25,6 @@ for location in config_locations:
UPLOAD_FOLDER = os.path.expanduser(app.config['DEFAULT']['media_folder_local']) UPLOAD_FOLDER = os.path.expanduser(app.config['DEFAULT']['media_folder_local'])
ALLOWED_EXTENSIONS = app.config['DEFAULT']['media_exts'] ALLOWED_EXTENSIONS = app.config['DEFAULT']['media_exts']
HTTP_SECRET = str(app.config['DEFAULT']['auth']) HTTP_SECRET = str(app.config['DEFAULT']['auth'])
local_bin=os.path.expanduser(app.config['DEFAULT']['local_bin'])
DEBUG = app.config['DEFAULT']['debug'] DEBUG = app.config['DEFAULT']['debug']
#HTTPS #HTTPS

View File

@ -1,6 +1,5 @@
[DEFAULT] [DEFAULT]
debug = 0 debug = 0
local_bin = "~/.local/bin/"
auth = "secret" auth = "secret"
media_folder_local = "~/Videos" media_folder_local = "~/Videos"
media_exts = ["mp4", "avi", "mkv"] media_exts = ["mp4", "avi", "mkv"]