Created
March 11, 2015 08:31
-
-
Save miaoski/4ef2fcd1fa1d5632900c to your computer and use it in GitHub Desktop.
Easy File Server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import Flask, request, send_from_directory | |
# set the project root directory as the static folder, you can set others. | |
app = Flask(__name__) | |
@app.route('/<path:path>') | |
def send_js(path): | |
return send_from_directory('/Users/philippe/iso/', path) | |
if __name__ == "__main__": | |
app.run(host = '0.0.0.0', port = 8888, debug = True, threaded=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment