add IfcTester webapp to Bonsai UI and websocket server

This commit is contained in:
Sayan Jyoti Das
2025-08-28 14:33:16 +05:30
committed by Dion Moult
parent be72887216
commit 10dcd9a923
6 changed files with 342 additions and 2 deletions
+1
View File
@@ -50,6 +50,7 @@ webapp-prepare: webapp-build
rm -rf $(PACKAGE_NAME)/webapp/www/*
mkdir -p $(PACKAGE_NAME)/webapp/www
cp -r $(WEBAPP_BUILD_DIR)/* $(PACKAGE_NAME)/webapp/www/
cp $(WEBAPP_DIR)/__init__.py $(PACKAGE_NAME)/webapp/__init__.py
cp $(WEBAPP_DIR)/serve.py $(PACKAGE_NAME)/webapp/serve.py
.PHONY: test
+1 -2
View File
@@ -15,11 +15,10 @@ classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
]
dependencies = ["ifcopenshell", "python-dateutil", "xmlschema", "numpy", "odfpy", "pystache", "bcf-client"]
dependencies = ["ifcopenshell", "python-dateutil", "xmlschema", "numpy", "odfpy", "pystache", "bcf-client", "flask"]
[project.optional-dependencies]
advanced = [
"flask",
]
[project.urls]