You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Every configurable value in the Flask backend is currently hardcoded in main.py — host, port, debug mode, CORS origins, and output directory. This means any environment change requires modifying source code directly.
Adding os.environ.get() calls with sensible defaults and a documented gdbui_server/.env.example would make the backend configurable without touching code, consistent with how most Flask projects handle config.