docker compose upUses app.py and init.sql. Visit http://localhost:8000 for the register/login page.
If you make changes to init.sql, stop compose and run:
docker compose down -v && docker compose upCreate a .env file with your OIDC credentials:
OIDC_CLIENT_ID=your_client_id
OIDC_CLIENT_SECRET=your_client_secret
OIDC_REDIRECT_URI=http://localhost:8001/callback
Then run:
docker compose -f docker-compose.oidc.yml upUses app_oidc.py and init_oidc.sql. Visit http://localhost:8001 and click "Login with OIDC".
IMPORTANT it will run on localhost:8001
If you make changes to init_oidc.sql, stop compose and run:
docker compose -f docker-compose.oidc.yml down -v && docker compose -f docker-compose.oidc.yml up