This commit is contained in:
sysek 2024-12-22 07:46:04 +01:00
parent 25cd0fd1b8
commit c3edaefdaf
2 changed files with 3 additions and 2 deletions

4
app.py
View file

@ -2,10 +2,10 @@ from flask import Flask, render_template
from bpy2 import bp, bp2
app = Flask(__name__)
app.register_blueprint(bp)
app.register_blueprint(bp2)
@app.route("/")
def index():
return render_template('maint.html')
if __name__ == '__main__':
app.run()

1
nginx.conf Normal file
View file

@ -0,0 +1 @@
upstream app_server