2023-08-13 20:56:43 +02:00
|
|
|
from bemani.utils.frontend import app, load_config, instantiate_cache, register_blueprints, register_games
|
2019-12-08 22:43:49 +01:00
|
|
|
|
|
|
|
# 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()
|
2023-08-13 20:56:43 +02:00
|
|
|
instantiate_cache(app)
|