MCPcopy Create free account
hub / github.com/DeepNotesApp/DeepNotes / ProcessEnv

Interface ProcessEnv

packages/@deeplib/mail/src/env.d.ts:2–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1declare namespace NodeJS {
2 interface ProcessEnv {
3 DEV?: string;
4 STAGING?: string;
5
6 SEND_EMAILS: string;
7
8 HOST: string;
9
10 APP_SERVER_PORT: string;
11 APP_SERVER_URL: string;
12
13 CLIENT_PORT: string;
14 CLIENT_URL: string;
15
16 REALTIME_SERVER_PORT: string;
17 REALTIME_SERVER_URL: string;
18
19 COLLAB_SERVER_PORT: string;
20 COLLAB_SERVER_URL: string;
21
22 ACCESS_SECRET: string;
23 REFRESH_SECRET: string;
24
25 EMAIL_CASE_SENSITIVITY_EXCEPTIONS: string;
26
27 USER_EMAIL_ENCRYPTION_KEY: string;
28 USER_EMAIL_SECRET: string;
29 USER_REHASHED_LOGIN_HASH_ENCRYPTION_KEY: string;
30 USER_AUTHENTICATOR_SECRET_ENCRYPTION_KEY: string;
31 USER_RECOVERY_CODES_ENCRYPTION_KEY: string;
32
33 GROUP_REHASHED_PASSWORD_HASH_ENCRYPTION_KEY: string;
34
35 KEYDB_HOSTS: string;
36 KEYDB_PASSWORD: string;
37
38 POSTGRES_HOST: string;
39 POSTGRES_PORT: string;
40 POSTGRES_USER: string;
41 POSTGRES_PASSWORD: string;
42 POSTGRES_DATABASE: string;
43 POSTGRES_CA_CERTIFICATE: string;
44
45 MAILJET_API_KEY: string;
46 MAILJET_API_SECRET: string;
47
48 BREVO_API_KEY: string;
49
50 SENDGRID_API_KEY: string;
51
52 STRIPE_SECRET_KEY: string;
53 STRIPE_WEBHOOK_SECRET: string;
54 STRIPE_MONTHLY_PRICE_ID: string;
55 STRIPE_YEARLY_PRICE_ID: string;
56
57 REVENUECAT_PUBLIC_APPLE_API_KEY: string;
58 REVENUECAT_WEBHOOK_SECRET: string;
59 }
60}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected