File size: 310 Bytes
b72a232 83093ec b72a232 9c90e37 b72a232 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
from neukit.gui import WebUI
def main():
print("Launching demo...")
# cwd = "/Users/andreped/workspace/neukit/" # local testing -> macOS
cwd = "/home/user/app/" # production -> docker
# initialize and run app
app = WebUI(cwd=cwd)
app.run()
if __name__ == "__main__":
main()
|