AeroPath / demo /app.py
andreped's picture
Setup repo + demo
97e9ddc unverified
raw
history blame
358 Bytes
from src.gui import WebUI
def main():
print("Launching demo...")
# cwd = "/Users/andreped/workspace/AeroPath/" # local testing -> macOS
cwd = "/home/user/app/" # production -> docker
class_name = "tumor"
# initialize and run app
app = WebUI(class_name=class_name, cwd=cwd)
app.run()
if __name__ == "__main__":
main()