mirror of
https://github.com/dokku/dokku.git
synced 2026-09-01 19:49:25 +02:00
While not in the build path, we should try and avoid unsupported dependencies where possible.
16 lines
506 B
Python
16 lines
506 B
Python
import os
|
|
from flask import Flask, render_template
|
|
from werkzeug.middleware.shared_data import SharedDataMiddleware
|
|
|
|
app = Flask(__name__)
|
|
|
|
@app.route('/')
|
|
def hello_world():
|
|
return render_template('index.html')
|
|
|
|
app.wsgi_app = SharedDataMiddleware(app.wsgi_app, {'/': os.path.join(os.path.dirname(__file__), 'static')})
|
|
app.wsgi_app = SharedDataMiddleware(app.wsgi_app, {'/': os.path.join(os.path.dirname(__file__), 'static/.tmp')})
|
|
|
|
if __name__ == '__main__':
|
|
app.run(host='0.0.0.0', debug=True)
|