AeroPath / demo /app.py
andreped's picture
Fixed airways task-related naming
b19d82f unverified
raw
history blame
No virus
360 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 = "airways"
# initialize and run app
app = WebUI(class_name=class_name, cwd=cwd)
app.run()
if __name__ == "__main__":
main()