Initial commit – AufmaßCreater v2.35

This commit is contained in:
2026-06-10 11:03:43 +02:00
commit 84c933ea9c
2823 changed files with 490495 additions and 0 deletions
+12
View File
@@ -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)