Skip to content

Instantly share code, notes, and snippets.

@Honghe
Forked from rduplain/app.py
Created June 22, 2018 07:57
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 Honghe/d31767998ae1b3188fc6e7d2c8295cae to your computer and use it in GitHub Desktop.
Save Honghe/d31767998ae1b3188fc6e7d2c8295cae 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