I have completed the Python part of a dynamic website and when it is run, it serves the pages, drawing templates out of the default folders of templates/
and the various css and JavaScript they need from the folder static/
.
So while the navigation, passwords, forms, functionality of the website now work, I am trying to fix the cosmetic appearance. When it was just static files, I could run Python simple HTTP server and simply make changes in the html or css, refresh the browser, and see live changes. Now that the pages are being served by Flask, that no longer works, which somewhat slows down the time to iterate on the design. I have to stop, restart the server, refresh the browser to view every change.
Is there a way - some kind of command line option or something, which will make flask also let these changes be viewed in real time like with simple server?