initial commit
This commit is contained in:
11
server/app/scripts/run.py
Normal file
11
server/app/scripts/run.py
Normal file
@@ -0,0 +1,11 @@
|
||||
import subprocess
|
||||
from pathlib import Path
|
||||
|
||||
|
||||
def main() -> None:
|
||||
curr_dir = Path(__file__).resolve().parent.absolute()
|
||||
script = curr_dir / "run.sh"
|
||||
try:
|
||||
subprocess.run(["sh", script], check=True)
|
||||
except KeyboardInterrupt:
|
||||
return
|
||||
Reference in New Issue
Block a user