muellerzr commited on
Commit
4770ac2
·
1 Parent(s): b4766e8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -24,7 +24,8 @@ def run_aim():
24
  subprocess.run(["unzip", "test.zip"])
25
  subprocess.run(["mv", "test/.aim/", "/home/user/app/.aim/"])
26
  time.sleep(5)
27
- cmd = f"aim up --host {HOST} --port {PORT} --dev".split()
 
28
  subprocess.run(cmd, shell=True)
29
 
30
 
 
24
  subprocess.run(["unzip", "test.zip"])
25
  subprocess.run(["mv", "test/.aim/", "/home/user/app/.aim/"])
26
  time.sleep(5)
27
+ cmd = f"aim up --host {HOST} --port {PORT}".split()
28
+ print(cmd)
29
  subprocess.run(cmd, shell=True)
30
 
31