muellerzr HF staff commited on
Commit
e5f2986
1 Parent(s): 4dfd6ac

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -23,9 +23,8 @@ def run_aim():
23
  """
24
  subprocess.run(["unzip", "test.zip"])
25
  subprocess.run(["mv", "test/.aim/", "/home/user/app/.aim/"])
26
- print(subprocess.check_output(["pip", "list"]).decode("utf-8"))
27
  time.sleep(5)
28
- cmd = f"aim up --host {HOST} --port {PORT} --dev".split()
29
  subprocess.run(cmd)
30
 
31
 
 
23
  """
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 --force-init".split()
28
  subprocess.run(cmd)
29
 
30