feat: Rebrand to License Authority with Govt of Goa branding

- Replace TLAS with License Authority throughout documentation
- Add Government of Goa emblem/logo (Ashoka Chakra style)
- Update frontend branding to match documentation
- Add configurable Swagger API link via VITE_API_BASE_URL env var
- Fix Docker build for VitePress (git dependency, .dockerignore)
- Fix helmet security headers for HTTP deployments
- Add CORS support for VM deployment

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Mahi
2026-02-10 00:46:25 -04:00
parent 435889ee79
commit 6ec8d3236d
34 changed files with 203 additions and 113 deletions

View File

@@ -2,15 +2,27 @@
## Overview
TLAS provides REST APIs for integrating with external systems. All APIs use JSON for request and response bodies.
The platform provides REST APIs for integrating with external systems. All APIs use JSON for request and response bodies.
## Base URL
```
Production: https://api.tlas.gov.in/v1
Staging: https://api-staging.tlas.gov.in/v1
Production: https://api.license.gov.in/v1
Staging: https://api-staging.license.gov.in/v1
```
## Interactive API Documentation
Explore and test APIs using our interactive Swagger UI:
**<ApiDocsLink />**
The Swagger documentation provides:
- Complete endpoint specifications
- Request/response schemas
- Interactive "Try it out" functionality
- Authentication testing
## Authentication
All API requests require authentication via Bearer token.
@@ -25,7 +37,7 @@ Obtain tokens through the authentication endpoint. See [Authentication](/develop
```http
POST /applications HTTP/1.1
Host: api.tlas.gov.in
Host: api.license.gov.in
Authorization: Bearer eyJhbGc...
Content-Type: application/json
@@ -92,9 +104,9 @@ X-RateLimit-Reset: 1707500000
- Java: Maven artifact `gov.in.license:license-authority-sdk`
## Documentation
- [Authentication](/developers/authentication) - Token management
- [Core APIs](/developers/core-apis) - Application and document APIs
- [Authentication](/developers/authentication) - Token management
- [Core APIs](/developers/core-apis) - Application and document APIs
- [Blockchain APIs](/developers/blockchain-apis) - Certificate verification
- [Webhooks](/developers/webhooks) - Event notifications
- [Error Handling](/developers/errors) - Error codes and handling