Skip to content

Instantly share code, notes, and snippets.

@tejastank
Forked from rduplain/app.py
Created December 13, 2013 15:59
Show Gist options
  • Save tejastank/7946427 to your computer and use it in GitHub Desktop.
Save tejastank/7946427 to your computer and use it in GitHub Desktop.
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