neukit / app.py
andreped's picture
Updated docker setup for deployment
83093ec
raw
history blame
310 Bytes
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()