Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/beets_flask/config/flask_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class ServerConfig:

# Folder where the frontend build resources are stored
# FIXME: 2025-06-04 likely we only need this in production.
FRONTEND_DIST_DIR = "../../frontend/dist/"
FRONTEND_DIST_DIR = "../frontend/dist/"

# Not sure if this is even used!
SECRET_KEY = "secret"
Expand Down
1 change: 1 addition & 0 deletions backend/beets_flask/server/websocket/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ def on(self, event: str, namespace: str | None = None) -> Callable: ... # type:
logger=False,
engineio_logger=False,
cors_allowed_origins="*",
client_manager=socketio.AsyncRedisManager("redis://"),
),
)

Expand Down
2 changes: 1 addition & 1 deletion docker/entrypoints/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ redis-cli FLUSHALL
uvicorn beets_flask.server.app:create_app --port 5001 \
--host 0.0.0.0 \
--factory \
--workers 1
--workers 4
Loading