Skip to content

Instantly share code, notes, and snippets.

@quicksilver0
Created March 3, 2024 22:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save quicksilver0/b3ca16a9cff31f6816a93ff574b6e01a to your computer and use it in GitHub Desktop.
Save quicksilver0/b3ca16a9cff31f6816a93ff574b6e01a to your computer and use it in GitHub Desktop.
from flask import Flask
app = Flask(__name__)
app.config['SECRET_KEY'] = 'this_is_bad_secret_key'
@app.route('/')
def index():
return 'Hello!'
if __name__ == "__main__":
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment