| # Backend API URL (change for production) | |
| BACKEND_URL = "https://examide-backend-production.up.railway.app" # Local dev | |
| # Supported languages | |
| SUPPORTED_LANGUAGES = { | |
| "python": "python", | |
| "javascript": "javascript", | |
| "java": "java", | |
| "c": "c", | |
| "c++": "cpp" | |
| } | |
| # UI Settings | |
| EDITOR_HEIGHT = 400 | |
| REFRESH_INTERVAL = 2 # seconds for polling updates | |