1
0
mirror of synced 2024-11-14 18:07:36 +01:00
bemaniutils/bemani/wsgi/frontend.wsgi

10 lines
397 B
Python

from bemani.utils.frontend import app, load_config, instantiate_cache, register_blueprints, register_games
# Assumes a production server yaml in the same directory as this WSGI
# file. Also assumes that your uWSGI instance is configured with a
# virtualenv that includes the installed version of this repo.
load_config('server.yaml')
register_blueprints()
register_games()
instantiate_cache(app)