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

Don't split?

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -24,8 +24,7 @@ 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}".split()
28
- print(cmd)
29
  subprocess.run(cmd, shell=True)
30
 
31
 
 
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"
 
28
  subprocess.run(cmd, shell=True)
29
 
30