Flask Frustrations
Oh man, maybe ’cause I’m newer to Flask but this was a feature that I wrestled with for hours.
Turns out if you run the Flask app from not within the application directory, it won’t serve up your static assets (JS, CSS, etc.).
python app_directory/app.py
I guess you must always run it from the app directory???
cd app_directory python app.py
Bananas
@______@