8 lines
316 B
Python
8 lines
316 B
Python
from bemani.utils.api import app, load_config, instantiate_cache
|
|
|
|
# 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')
|
|
instantiate_cache(app)
|