Skip to content

Instantly share code, notes, and snippets.

@dongyuwei
Forked from rduplain/app.py
Created July 18, 2017 12:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dongyuwei/77a1c7ef65c3825c78ab70edd5a77881 to your computer and use it in GitHub Desktop.
Save dongyuwei/77a1c7ef65c3825c78ab70edd5a77881 to your computer and use it in GitHub Desktop.
Add a second static directory to Flask, in ../static/.
from flask import Flask, send_from_directory
app = Flask(__name__)
@app.route('/base/<path:filename>')
def base_static(filename):
return send_from_directory(app.root_path + '/../static/', filename)
if __name__ == '__main__':
app.run(debug=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment