I am rendering a template, that I am attempting to style with an external style sheet. File structure is as follows.
/app - app_runner.py /services
One more point to add.Along with above upvoted answers, please make sure the below line is added to app.py file:
app.py
app = Flask(__name__, static_folder="your path to static")
Otherwise flask will not be able to detect static folder.