Skip to content

Commit 89caf8d

Browse files
authored
fix: clean unused env directives (#485)
1 parent b26a177 commit 89caf8d

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

src/env.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
declare global {
22
namespace NodeJS {
33
interface ProcessEnv {
4+
DATABASE_URL: string
5+
6+
// Clerk
47
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: string
58
NEXT_PUBLIC_CLERK_BASE_URL: string
69
NEXT_PUBLIC_CLERK_REDIRECT_BASE: string
710
NEXT_PUBLIC_BASE_URL: string
8-
9-
DATABASE_URL: string
1011
CLERK_SECRET_KEY: string
1112
CLERK_WEBHOOK_SECRET: string
12-
CRYPTO_PASSPHRASE: string
1313

14-
AI_TOKEN: string
15-
AI_BASE_URL: string
14+
// Crypto
15+
CRYPTO_PASSPHRASE: string
1616
}
1717
}
1818
}

src/server/validations/log.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
import { logSchema } from '@/server/databases/types'
2-
32
export const LogValidation = logSchema

src/server/validations/metric.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
import { metricSchema } from '@/server/databases/types'
2-
32
export const MetricValidation = metricSchema

src/server/validations/report.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
import { reportSchema } from '@/server/databases/types'
2-
32
export const ReportValidation = reportSchema

0 commit comments

Comments
 (0)