Skip to content

Instantly share code, notes, and snippets.

@ZackAkil
Created June 14, 2023 07:30
Show Gist options
  • Save ZackAkil/e29723cab4e49ca5ccc3a91f912514c5 to your computer and use it in GitHub Desktop.
Save ZackAkil/e29723cab4e49ca5ccc3a91f912514c5 to your computer and use it in GitHub Desktop.
Server
from flask import Flask, send_from_directory
app = Flask(__name__)
@app.route('/')
def index():
return 'Hello, World!'
@app.route('/<path:path>')
def serve_files(path):
return send_from_directory('.', path)
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