mirror of
https://github.com/simon987/nyaa.git
synced 2025-04-04 06:52:59 +00:00
* Replace all `from nyaa import app` imports with `app = flask.current_app` (or `from flask import current_app as app` where possible) * Add a separate config object for top-level and class statements as `nyaa.extensions.config` Required because those codes don't have app context at the time of evaluation/execution. * Remove `routes.py` file and register all blueprints in `nyaa/__init__.py` * Refactor `nyaa/__init__.py` into an app factory * Update tools * Update tests (temporary, will be replaced)
6 lines
126 B
Python
Executable File
6 lines
126 B
Python
Executable File
#!/usr/bin/env python3
|
|
from nyaa import create_app
|
|
|
|
app = create_app('config')
|
|
app.run(host='0.0.0.0', port=5500, debug=True)
|