neukit / app.py
andreped's picture
Working prototype - to be refactored
9c90e37
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()