forked from Waitner125/feeli-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.d.ts
More file actions
42 lines (37 loc) · 1007 Bytes
/
env.d.ts
File metadata and controls
42 lines (37 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/// <reference types="astro/client" />
interface Env {
DB: D1Database;
MEDIA_BUCKET: R2Bucket;
SESSION: KVNamespace;
ASSETS: Fetcher;
SITE_NAME: string;
SITE_URL: string;
TURNSTILE_SITE_KEY: string;
AUTO_DEPLOY_WEBHOOK_URL?: string;
AUTO_DEPLOY_WEBHOOK_SECRET?: string;
AUTO_DEPLOY_GITHUB_EVENT_TYPE?: string;
JWT_SECRET: string;
ADMIN_USERNAME: string;
ADMIN_GITHUB_LOGIN: string;
ADMIN_PASSWORD_HASH: string;
TURNSTILE_SECRET_KEY: string;
GITHUB_OAUTH_CLIENT_ID: string;
GITHUB_OAUTH_CLIENT_SECRET: string;
GITHUB_OAUTH_REDIRECT_URI: string;
AI_INTERNAL_API_KEY?: string;
AI_PUBLIC_API_KEY?: string;
PUBLIC_AI_RATE_LIMIT_PER_MINUTE?: string;
PUBLIC_AI_DAILY_LIMIT_PER_IP?: string;
MCP_BEARER_TOKEN?: string;
MCP_RATE_LIMIT_PER_MINUTE?: string;
MCP_AUTH_FAIL_LIMIT_PER_MINUTE?: string;
MCP_AUTH_BLOCK_SECONDS?: string;
}
declare namespace Cloudflare {
interface Env extends globalThis.Env {}
}
declare namespace App {
interface Locals {
cfContext: ExecutionContext;
}
}