flask-mvc
flask-mvc copied to clipboard
Small changes
Two things I ran into problems with. Nothing big, but just took me a while to figure it out.
In the requirements.txt file, you need to add Werkzeug==2.2.2 otherwise Werkzeug 3.x or greater could install and break the make due to the import statements being incompatible with Werkzeug 3.x.
Also, in the script/setup I had to place quotes around the path to the requirements file using pip install -r "$REPO_DIR/requirements.txt". Without the quotes my path was causing an error due to - being in the path.
I have not had a chance to explore the code, but I appreciate you sharing it. :)
I would appreciate a pull request