Spaces:
Running
Running
File size: 360 Bytes
97e9ddc b19d82f 97e9ddc |
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/AeroPath/" # local testing -> macOS
cwd = "/home/user/app/" # production -> docker
class_name = "airways"
# initialize and run app
app = WebUI(class_name=class_name, cwd=cwd)
app.run()
if __name__ == "__main__":
main()
|