| # ββ App ββ | |
| APP_NAME=ISP Handbook Service | |
| APP_VERSION=1.0.0 | |
| DEBUG=false | |
| PORT=7860 | |
| # ββ Database (MySQL) ββ | |
| DB_HOST=localhost | |
| DB_PORT=3306 | |
| DB_USER=root | |
| DB_PASSWORD= | |
| DB_NAME=handbook | |
| DB_CHARSET=utf8mb4 | |
| # ββ External API endpoints (source-of-truth JSON APIs) ββ | |
| # If set, these override the computed URLs from API_BASE_URL + paths. | |
| HANDBOOK_GENERAL_ENDPOINT= | |
| UNIVERSITY_HANDBOOK_ENDPOINT= | |
| # Base URL of the PHP server hosting the JSON APIs | |
| API_BASE_URL=https://finsapdev.qhtestingserver.com | |
| GENERAL_SECTIONS_PATH=/MODEL_APIS/handbook_general_sections.php | |
| UNIVERSITY_SECTIONS_PATH=/MODEL_APIS/university_handbook.php | |
| # ββ Images directory ββ | |
| IMAGES_DIR=./images | |
| # ββ Fonts directory ββ | |
| FONT_DIR=./fonts | |
| # ββ CORS allowed origins (comma-separated) ββ | |
| CORS_ORIGINS=http://localhost:5173,http://127.0.0.1:5173,https://finsapdev.qhtestingserver.com | |
| # ββ HTTP timeout for upstream API calls (seconds) ββ | |
| HTTP_TIMEOUT=25 | |