misp-dashboard/server.py

12 lines
241 B
Python
Executable File

#!/usr/bin/env python3.5
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def index():
return render_template('index.html')
if __name__ == '__main__':
app.run(host='localhost', port=8000, debug=True)