base: add allowed CORS origins for localhost:4321 (dev purposes); lyric_search: change typeahead to return a maximum of 10 results, prev. 100

This commit is contained in:
2025-06-22 07:54:32 -04:00
parent a6128c7647
commit 0fe081597e
3 changed files with 14 additions and 13 deletions

View File

@ -50,18 +50,19 @@ class RadioUtil:
"/usr/local/share", "sqlite_dbs", "track_album_art.db"
)
self.playback_genres: list[str] = [
# "post-hardcore",
# "post hardcore",
"post-hardcore",
"post hardcore",
"metalcore",
"deathcore",
# "edm",
# "electronic",
# "hard rock",
# "ska",
# "post punk",
# "post-punk",
# "pop punk",
# "pop-punk",
"edm",
"electronic",
"hard rock",
"rock",
"ska",
"post punk",
"post-punk",
"pop punk",
"pop-punk",
]
self.active_playlist: list[dict] = []
self.playlist_loaded: bool = False