We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After creating __init__.py, issuing flask run, website gives 404 error
__init__.py
flask run
$ flask run * Serving Flask app "app.py" (lazy loading) * Environment: development * Debug mode: on * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit) * Restarting with stat * Debugger is active! * Debugger PIN: 713-868-903 127.0.0.1 - - [26/Sep/2019 09:14:10] "GET / HTTP/1.1" 404 -
App isn't recognizing routes in routes.py because it is never imported and the blueprint object bp is never registered (as it is in the example code).
The text was updated successfully, but these errors were encountered:
9998987
Fixes authlib#58. Fixed route import/registration in websites/app.py
b931450
No branches or pull requests
After creating
__init__.py
, issuingflask run
, website gives 404 errorApp isn't recognizing routes in routes.py because it is never imported and the blueprint object bp is never registered (as it is in the example code).
The text was updated successfully, but these errors were encountered: