soiz commited on
Commit
ae64cde
·
verified ·
1 Parent(s): 80a83a7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -13,7 +13,7 @@ def clone_and_setup_repo():
13
  shutil.rmtree(temp_dir)
14
 
15
  print("Cloning the repository...")
16
- result = os.system(f"git clone https://github.com/izum00/nebula --recursive {temp_dir}")
17
 
18
  if result != 0:
19
  print("Error: Failed to clone the repository.")
@@ -24,7 +24,7 @@ def clone_and_setup_repo():
24
  os.system("npm i")
25
  os.system("cp config.example.toml config.toml")
26
  os.system("npm run build")
27
- os.system("npm start")
28
 
29
  # index.htmlをカレントディレクトリに移動
30
  index_html_path = os.path.join(temp_dir, 'index.html')
 
13
  shutil.rmtree(temp_dir)
14
 
15
  print("Cloning the repository...")
16
+ result = os.system(f"git clone https://github.com/binary-person/rammerhead.git --recursive {temp_dir}")
17
 
18
  if result != 0:
19
  print("Error: Failed to clone the repository.")
 
24
  os.system("npm i")
25
  os.system("cp config.example.toml config.toml")
26
  os.system("npm run build")
27
+ os.system("node src/server.js")
28
 
29
  # index.htmlをカレントディレクトリに移動
30
  index_html_path = os.path.join(temp_dir, 'index.html')