docs: Rebuild documentation as enterprise-grade TLAS platform
- Migrate from custom HTTP server to VitePress framework
- Rename project to Tokenized License Approval System (TLAS)
- Add comprehensive documentation for all stakeholders:
- Business: Executive summary, value proposition, governance
- Operations: Infrastructure, installation, monitoring, backup
- Departments: User guide, workflows, verification, issuance
- Developers: API reference, authentication, webhooks, SDKs
- Compliance: OWASP, DPDP Act, IT Act, audit framework
- Add modern theme with dark mode and full-text search
- Update Dockerfile for VitePress build process
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-10 00:05:20 -04:00
|
|
|
---
|
|
|
|
|
layout: home
|
|
|
|
|
|
|
|
|
|
hero:
|
2026-02-10 00:46:25 -04:00
|
|
|
name: "License Authority"
|
|
|
|
|
text: "Government of Goa, India"
|
|
|
|
|
tagline: Blockchain-powered license management for secure, transparent, and tamper-proof government services
|
docs: Rebuild documentation as enterprise-grade TLAS platform
- Migrate from custom HTTP server to VitePress framework
- Rename project to Tokenized License Approval System (TLAS)
- Add comprehensive documentation for all stakeholders:
- Business: Executive summary, value proposition, governance
- Operations: Infrastructure, installation, monitoring, backup
- Departments: User guide, workflows, verification, issuance
- Developers: API reference, authentication, webhooks, SDKs
- Compliance: OWASP, DPDP Act, IT Act, audit framework
- Add modern theme with dark mode and full-text search
- Update Dockerfile for VitePress build process
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-10 00:05:20 -04:00
|
|
|
actions:
|
|
|
|
|
- theme: brand
|
|
|
|
|
text: Platform Overview
|
|
|
|
|
link: /overview/
|
|
|
|
|
- theme: alt
|
|
|
|
|
text: API Documentation
|
|
|
|
|
link: /developers/
|
2026-02-10 00:46:25 -04:00
|
|
|
- theme: alt
|
|
|
|
|
text: Swagger API
|
|
|
|
|
link: /swagger-redirect
|
docs: Rebuild documentation as enterprise-grade TLAS platform
- Migrate from custom HTTP server to VitePress framework
- Rename project to Tokenized License Approval System (TLAS)
- Add comprehensive documentation for all stakeholders:
- Business: Executive summary, value proposition, governance
- Operations: Infrastructure, installation, monitoring, backup
- Departments: User guide, workflows, verification, issuance
- Developers: API reference, authentication, webhooks, SDKs
- Compliance: OWASP, DPDP Act, IT Act, audit framework
- Add modern theme with dark mode and full-text search
- Update Dockerfile for VitePress build process
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-10 00:05:20 -04:00
|
|
|
|
|
|
|
|
features:
|
|
|
|
|
- icon: 🔐
|
|
|
|
|
title: Cryptographic Verification
|
|
|
|
|
details: Every license is issued as a blockchain-native NFT token with cryptographic proof of authenticity, eliminating document forgery.
|
|
|
|
|
- icon: 📋
|
|
|
|
|
title: Configurable Workflows
|
|
|
|
|
details: Multi-stage approval workflows with parallel and sequential processing, conditional routing, and SLA enforcement.
|
|
|
|
|
- icon: 🔍
|
|
|
|
|
title: Complete Audit Trail
|
|
|
|
|
details: Immutable transaction logs for every action. Full chain-of-custody tracking from application to issuance.
|
|
|
|
|
- icon: 🔗
|
|
|
|
|
title: Integration Ready
|
|
|
|
|
details: REST APIs, webhook notifications, and pre-built connectors for DigiLocker, payment gateways, and legacy systems.
|
|
|
|
|
- icon: 📊
|
|
|
|
|
title: Real-time Analytics
|
|
|
|
|
details: Operational dashboards, SLA monitoring, bottleneck identification, and predictive processing estimates.
|
|
|
|
|
- icon: 🛡️
|
|
|
|
|
title: Enterprise Security
|
|
|
|
|
details: OWASP-compliant architecture, role-based access control, data encryption at rest and in transit.
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
:root {
|
|
|
|
|
--vp-home-hero-name-color: transparent;
|
|
|
|
|
--vp-home-hero-name-background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
|
|
|
|
|
}
|
|
|
|
|
.dark {
|
|
|
|
|
--vp-home-hero-name-background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|
2026-02-10 00:46:25 -04:00
|
|
|
<script setup>
|
|
|
|
|
import { onMounted } from 'vue'
|
|
|
|
|
|
|
|
|
|
const apiBaseUrl = import.meta.env.VITE_API_BASE_URL || ''
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
const swaggerLink = document.querySelector('a[href="/swagger-redirect"]')
|
|
|
|
|
if (swaggerLink) {
|
|
|
|
|
swaggerLink.href = `${apiBaseUrl}/api/docs`
|
|
|
|
|
swaggerLink.target = '_blank'
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
|
docs: Rebuild documentation as enterprise-grade TLAS platform
- Migrate from custom HTTP server to VitePress framework
- Rename project to Tokenized License Approval System (TLAS)
- Add comprehensive documentation for all stakeholders:
- Business: Executive summary, value proposition, governance
- Operations: Infrastructure, installation, monitoring, backup
- Departments: User guide, workflows, verification, issuance
- Developers: API reference, authentication, webhooks, SDKs
- Compliance: OWASP, DPDP Act, IT Act, audit framework
- Add modern theme with dark mode and full-text search
- Update Dockerfile for VitePress build process
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-10 00:05:20 -04:00
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## Documentation by Role
|
|
|
|
|
|
|
|
|
|
| Audience | Documentation | Description |
|
|
|
|
|
|----------|---------------|-------------|
|
|
|
|
|
| **Executives & Decision Makers** | [Business Documentation](/business/) | ROI analysis, governance frameworks, implementation planning |
|
|
|
|
|
| **IT Operations** | [Operations Guide](/operations/) | Deployment, infrastructure, monitoring, disaster recovery |
|
|
|
|
|
| **Department Staff** | [Department Guide](/departments/) | Application processing, workflow management, license issuance |
|
|
|
|
|
| **Integration Partners** | [Developer Documentation](/developers/) | API specifications, authentication, webhooks, SDKs |
|
|
|
|
|
| **Compliance Officers** | [Compliance Framework](/compliance/) | Regulatory alignment, audit procedures, data protection |
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## Standards & Compliance
|
|
|
|
|
|
2026-02-10 00:46:25 -04:00
|
|
|
This platform is designed and implemented in accordance with:
|
docs: Rebuild documentation as enterprise-grade TLAS platform
- Migrate from custom HTTP server to VitePress framework
- Rename project to Tokenized License Approval System (TLAS)
- Add comprehensive documentation for all stakeholders:
- Business: Executive summary, value proposition, governance
- Operations: Infrastructure, installation, monitoring, backup
- Departments: User guide, workflows, verification, issuance
- Developers: API reference, authentication, webhooks, SDKs
- Compliance: OWASP, DPDP Act, IT Act, audit framework
- Add modern theme with dark mode and full-text search
- Update Dockerfile for VitePress build process
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-10 00:05:20 -04:00
|
|
|
|
|
|
|
|
| Standard | Scope |
|
|
|
|
|
|----------|-------|
|
|
|
|
|
| **IT Act 2000 (India)** | Legal validity of electronic records and digital signatures |
|
|
|
|
|
| **DPDP Act 2023** | Personal data protection and privacy requirements |
|
|
|
|
|
| **GIGW 3.0** | Government of India web guidelines for accessibility |
|
|
|
|
|
| **OWASP Top 10** | Web application security controls |
|
|
|
|
|
| **ISO 27001** | Information security management framework |
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## Architecture Summary
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
┌────────────────────────────────────────────────────────────────┐
|
|
|
|
|
│ Load Balancer │
|
|
|
|
|
├────────────────────────────────────────────────────────────────┤
|
|
|
|
|
│ Web Application Layer │
|
|
|
|
|
│ (Angular 19 / Material) │
|
|
|
|
|
├────────────────────────────────────────────────────────────────┤
|
|
|
|
|
│ API Gateway │
|
|
|
|
|
│ (NestJS / TypeScript) │
|
|
|
|
|
├──────────────────┬─────────────────┬───────────────────────────┤
|
|
|
|
|
│ PostgreSQL │ Hyperledger │ External Services │
|
|
|
|
|
│ Database │ Besu │ (DigiLocker, Payments) │
|
|
|
|
|
└──────────────────┴─────────────────┴───────────────────────────┘
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
For detailed architecture documentation, see [Solution Architecture](/overview/solution).
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## Version Information
|
|
|
|
|
|
|
|
|
|
| Component | Version | Release Date |
|
|
|
|
|
|-----------|---------|--------------|
|
2026-02-10 00:46:25 -04:00
|
|
|
| Platform | 1.0.0 | February 2026 |
|
docs: Rebuild documentation as enterprise-grade TLAS platform
- Migrate from custom HTTP server to VitePress framework
- Rename project to Tokenized License Approval System (TLAS)
- Add comprehensive documentation for all stakeholders:
- Business: Executive summary, value proposition, governance
- Operations: Infrastructure, installation, monitoring, backup
- Departments: User guide, workflows, verification, issuance
- Developers: API reference, authentication, webhooks, SDKs
- Compliance: OWASP, DPDP Act, IT Act, audit framework
- Add modern theme with dark mode and full-text search
- Update Dockerfile for VitePress build process
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-10 00:05:20 -04:00
|
|
|
| API Version | v1 | February 2026 |
|
|
|
|
|
| Documentation | 1.0.0 | February 2026 |
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
<div class="contact-section">
|
|
|
|
|
|
|
|
|
|
## Support Channels
|
|
|
|
|
|
|
|
|
|
**Technical Support**: support@goagel.gov.in
|
|
|
|
|
**Operations Helpdesk**: +91-832-XXXXXXX
|
|
|
|
|
**Business Inquiries**: business@goagel.gov.in
|
|
|
|
|
|
|
|
|
|
Operating Hours: Monday - Friday, 09:00 - 18:00 IST
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.contact-section {
|
|
|
|
|
background: var(--vp-c-bg-soft);
|
|
|
|
|
padding: 24px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|