TODO
For UNIX:
python3 -m venv venv
source ./venv/bin/activate
pip install -r requirements.txtFor Windows:
python -m venv venv
./venv/Scripts/activate.bat
pip install -r requirements.txtCreate .env file (or rename the example one), and fill with the values from instruction inside
For UNIX:
set -a && source .env && set +a; clear; python -m srcFor Windows (untested):
Get-Content .env | ForEach-Object { if ($_ -match '^\s*([^#][^=]+)=(.*)$') { Set-Item -Path "env:$($matches[1].Trim())" -Value $matches[2].Trim() } }; clear; python -m srcpython3.11 -m venv venv && source ./venv/bin/activate && pip install -r requirements.txtCreate .env file (or rename the example one), and fill with the values from instruction inside
./ci.shmkdir ./profilingpython -m cProfile -o profiling/cprofile.prof -m srcpip install py-spy &&
py-spy record -o profiling/pyspy.svg -- python -m src;
pip uninstall py-spy