initial commit

This commit is contained in:
2025-08-22 23:42:34 +02:00
commit 191fe98ac0
19 changed files with 1650 additions and 0 deletions

6
run.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/sh
python -m venv backend/.venv
source backend/.venv/bin/activate
pip install -r backend/requirements.txt
npm install
npm run dev