1st Versionwith nginx, gunicorn and flask

This commit is contained in:
2024-03-11 11:56:30 +01:00
commit fcaa0d5d72
35 changed files with 1322 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
from vrmpdvsetuppage import application
if __name__ == "__main__":
application.run()

View File

@@ -0,0 +1,8 @@
from flask import Flask
application = Flask(__name__)
@application.route("/")
def hello():
return "Welcome to VRMPDV Application Setup!"
if __name__ == "__main__":
application.run(host='0.0.0.0')