Fix: Align get many methods with DB authorisation changes.

This commit is contained in:
2026-03-28 11:51:27 +00:00
parent 7da5d49bc1
commit c50463a1cd
11 changed files with 496 additions and 32 deletions

View File

@@ -1,18 +1,25 @@
Magic: The Gathering trading card game commander life tracking tool.
## Magic: The Gathering trading card game commander life tracking tool.
Powered by flask
enter virtual environment:
python -m venv VIRTUAL_ENVIRONMENT_NAME
# create virtual environment
python3 -m venv VIRTUAL_ENVIRONMENT_NAME
run module bundler:
# enter virtual environment
source ./VIRTUAL_ENVIRONMENT_NAME/bin/activate
# run module bundler
npm run build
host for machine:
python -m flask run
# create ssh tunnel to vps hosting db
ssh -i /path/to/your/key.pem -L 5433:localhost:5433 user@your-vps-ip -N
host for local network:
python -m flask run --host=0.0.0.0
# host
for machine:
python3 -m flask run
for local network:
python3 -m flask run --host=0.0.0.0
files dedicated to each page: