Spaces:
Sleeping
Sleeping
| """ | |
| Application Metadata | |
| Centralized configuration for app information | |
| """ | |
| APP_NAME = "SwiftOps API" | |
| APP_VERSION = "1.0.0" | |
| APP_DESCRIPTION = "Field Service Management Platform for African Telecom" | |
| APP_GITHUB_URL = "https://github.com/yourusername/swiftops-backend" # Update with actual URL | |
| # API Configuration | |
| API_PREFIX = "/api/v1" | |
| DOCS_URL = "/api/docs" | |
| REDOC_URL = "/api/redoc" | |
| # Contact Information | |
| CONTACT = { | |
| "name": "SwiftOps Team", | |
| "email": "support@swiftops.com", | |
| "url": "https://swiftops.com" | |
| } | |
| # License Information | |
| LICENSE_INFO = { | |
| "name": "MIT", | |
| "url": "https://opensource.org/licenses/MIT" | |
| } | |