adapt to new cloud endpoints

+ export artists to json
This commit is contained in:
cwilvx
2024-12-11 14:22:20 +03:00
parent 8ff283cbcb
commit 77485dd0a7
3 changed files with 50 additions and 27 deletions
+3 -1
View File
@@ -27,6 +27,7 @@ from app.plugins.register import register_plugins
from app.settings import FLASKVARS, TCOLOR, Info
from app.setup import load_into_mem, run_setup
from app.start_info_logger import log_startup_info
from app.store.artists import ArtistStore
from app.store.tracks import TrackStore
from app.utils.filesystem import get_home_res_path
from app.utils.paths import getClientFilesExtensions
@@ -229,7 +230,8 @@ if __name__ == "__main__":
load_into_mem()
run_swingmusic()
TrackStore.export()
ArtistStore.export()
host = FLASKVARS.get_flask_host()
port = FLASKVARS.get_flask_port()