Initial commit – AufmaßCreater v2.35
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import sys, os
|
||||
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
|
||||
|
||||
from app import create_app
|
||||
from config import Config
|
||||
|
||||
app = create_app()
|
||||
|
||||
if __name__ == '__main__':
|
||||
from waitress import serve
|
||||
print(f"Starte AufmaßWeb auf http://0.0.0.0:5000")
|
||||
serve(app, host='0.0.0.0', port=5000)
|
||||
Reference in New Issue
Block a user