Werkzeug has removed legacy code in 3.0 and it broke main.py.
Attempted solutions:
- Using werkzeug==2.2.2 has resoved the python error, however the server on localhost:5000 displays a 404.
- Using a star import on services (i.e. adding in main.py a line that says "from services import * ") does not resolve any potential sequence issues.
- Adding a trailing "/" in app.route('/thing') does not resolve the situation.
- Directly accessing urls works (e.g) http://127.0.0.1:5000/schedule/ is accessible
- On closer inspection, there is no app.route('/'), i.e. the main page is missing. Did a commit remove it by accident?