Skip to content
Snippets Groups Projects
Commit 32a3bc62 authored by Julian Rother's avatar Julian Rother
Browse files

Add flask boilerplate server.py

parent 81324cb5
No related branches found
No related tags found
No related merge requests found
#!/bin/python
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html', site_title="Video AG")
if __name__ == '__main__':
app.debug = True
app.run()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment