File size: 381 Bytes
7c1e417
 
 
 
 
 
 
 
 
 
 
 
be8cccc
7c1e417
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from src.gui import WebUI


def main():
    print("Launching demo...")

    # cwd = "/Users/andreped/workspace/LungTumorMask/"  # 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()