"""
Application entry point for uWSGI server
"""
from flask import Flask, render_template, send_from_directory

app = Flask(__name__)
app.config['SEND_FILE_MAX_AGE_DEFAULT'] = 0

@app.route('/')
def index():
    return render_template('index.html')


if __name__ == "__main__":
    app.run()
