mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-26 01:27:07 +00:00
Move providers config from DB to config file
This commit is contained in:
parent
fcc663af91
commit
48648d1582
1 changed files with 14 additions and 1 deletions
|
@ -32,7 +32,8 @@ defaults = {
|
|||
'minimum_score_movie': '70',
|
||||
'use_embedded_subs': 'True',
|
||||
'only_monitored': 'False',
|
||||
'adaptive_searching': 'False'
|
||||
'adaptive_searching': 'False',
|
||||
'enabled_providers': ''
|
||||
},
|
||||
'auth': {
|
||||
'type': 'None',
|
||||
|
@ -62,6 +63,18 @@ defaults = {
|
|||
'username': '',
|
||||
'password': '',
|
||||
'exclude': 'localhost,127.0.0.1'
|
||||
},
|
||||
'opensubtitles': {
|
||||
'username': '',
|
||||
'password': ''
|
||||
},
|
||||
'addic7ed': {
|
||||
'username': '',
|
||||
'password': ''
|
||||
},
|
||||
'legendastv': {
|
||||
'username': '',
|
||||
'password': ''
|
||||
}}
|
||||
|
||||
settings = simpleconfigparser(defaults=defaults)
|
||||
|
|
Loading…
Reference in a new issue