mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-22 08:38:13 +02:00
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:
parent
90f7aac8ad
commit
1f4ff8f865
19 changed files with 267 additions and 60 deletions
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue