initial project code commit

This commit is contained in:
2026-04-22 13:15:55 +03:00
parent e624299842
commit 9dcc2f9473
69 changed files with 7387 additions and 0 deletions

17
config/setup/configure-dev.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/usr/bin/env bash
echo "cleaning previous environment..."
rm -rf .venv
echo "creating new environment..."
python3 -m venv .venv
source .venv/bin/activate
echo "install pip..."
python3 -m ensurepip --default-pip
echo "install requirements..."
pip install -r requirements-dev.txt
echo "finished"