File tree 4 files changed +7
-4
lines changed
4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 10
10
RIVEN_FORCE_ENV = false
11
11
12
12
# This is used to specify settings filename. By default it's settings.json.
13
- RIVEN_SETTINGS_FILENAME = " settings.json"
13
+ SETTINGS_FILENAME = " settings.json"
14
+
15
+ # Whether to use trakt cache or not.
16
+ SKIP_TRAKT_CACHE = false
14
17
15
18
# This will reset the database and recreate all tables, and then exit after running!
16
19
HARD_RESET = false
Original file line number Diff line number Diff line change 7
7
8
8
import uvicorn
9
9
from dotenv import load_dotenv
10
- load_dotenv () # import required here to support RIVEN_SETTINGS_FILENAME
10
+ load_dotenv () # import required here to support SETTINGS_FILENAME
11
11
12
12
from fastapi import FastAPI
13
13
from fastapi .middleware .cors import CORSMiddleware
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ def __init__(self, settings: TraktModel):
51
51
self .oauth_redirect_uri = self .settings .oauth .oauth_redirect_uri
52
52
rate_limit_params = get_rate_limit_params (max_calls = 1000 , period = 300 )
53
53
trakt_cache = get_cache_params ("trakt" , 86400 )
54
- use_cache = not os .environ .get ("SKIP_TRAKT_CACHE" , False )
54
+ use_cache = os .environ .get ("SKIP_TRAKT_CACHE" , "false" ). lower () == "true"
55
55
session = create_service_session (rate_limit_params = rate_limit_params , use_cache = use_cache , cache_params = trakt_cache )
56
56
self .headers = {
57
57
"Content-type" : "application/json" ,
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ class SettingsManager:
13
13
14
14
def __init__ (self ):
15
15
self .observers = []
16
- self .filename = os .environ .get ("RIVEN_SETTINGS_FILENAME " , "settings.json" )
16
+ self .filename = os .environ .get ("SETTINGS_FILENAME " , "settings.json" )
17
17
self .settings_file = data_dir_path / self .filename
18
18
19
19
Observable .set_notify_observers (self .notify_observers )
You can’t perform that action at this time.
0 commit comments