feat: allow debugging with pdb

allows user to debug the webapp when admin API key is passed as a param.
also - an anniversary, 100th commit!
This commit is contained in:
2025-11-13 11:28:40 +01:00
parent 11c94c757e
commit c979c97077
3 changed files with 27 additions and 16 deletions

View File

@@ -7,8 +7,9 @@ debug = false # Whether to print verbose, d
cache = true # Whether to cache requests for 3 hours (temporary solution to long load times).
[api]
api_key = "" # Leave empty API key for public access to non-sensitive backend
api_key_admin = "CHANGEME" # Empty *admin* API key will autogenerate a random one every launch.
api_key = "" # Leave empty API key for public access to non-sensitive backend
api_key_admin = "CHANGEME" # Empty *admin* API key will autogenerate a random one every launch.
enable_debugger_halt = false # Whether to allow to trigger pdb using admin's API key.
[extractor]
user-agent = "" # Leave empty for default (Firefox ESR).