chore: Update README and add Mintlify docs

* Update README and add Mintlify docs

* Add Twilio documentation

* Remove license and fix readme
This commit is contained in:
Abhishek 2025-10-04 15:05:07 +05:30 committed by GitHub
parent 90f7aac8ad
commit 1f4ff8f865
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
19 changed files with 267 additions and 60 deletions

View file

@ -8,7 +8,7 @@ import { NextResponse } from 'next/server';
export async function GET() {
return NextResponse.json({
enabled: process.env.ENABLE_POSTHOG === 'true',
enabled: process.env.ENABLE_TELEMETRY === 'true',
key: process.env.POSTHOG_KEY || '',
host: process.env.POSTHOG_HOST || '/ingest',
uiHost: process.env.POSTHOG_UI_HOST || 'https://us.posthog.com',

View file

@ -2,7 +2,7 @@ import { NextResponse } from 'next/server';
export async function GET() {
return NextResponse.json({
enabled: process.env.ENABLE_SENTRY === 'true',
enabled: process.env.ENABLE_TELEMETRY === 'true',
dsn: process.env.SENTRY_DSN || '',
environment: process.env.NODE_ENV || 'development',
});