initial commit for GitHub

This commit is contained in:
Lucas Jensen
2024-12-01 19:15:25 -08:00
commit 925b334e4c
91 changed files with 8031 additions and 0 deletions

12
server/app/scripts/run.py Normal file
View File

@@ -0,0 +1,12 @@
import subprocess
from pathlib import Path
def main() -> None:
print("starting app in development mode")
curr_dir = Path(__file__).resolve().parent.absolute()
script = curr_dir / "run.sh"
try:
subprocess.run(["sh", script], check=True)
except KeyboardInterrupt:
return