-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
feat: v1 upstream main
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,4 +23,16 @@ [email protected] | |
MAIL_HOST= | ||
MAIL_PASSWORD= | ||
MAIL_PORT=587 | ||
MAIL_USER= | ||
MAIL_USER= | ||
|
||
|
||
AWS_ACCESS_KEY = '' | ||
AWS_SECRET_KEY = '' | ||
AWS_REGION = "" | ||
|
||
|
||
|
||
STRIPE_SECRET_KEY = "" | ||
STRIPE_WEBHOOK_SECRET = "" | ||
|
||
AI_KEY = "" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
declare namespace NodeJS { | ||
export interface ProcessEnv { | ||
DATABASE_URL: string; | ||
GITHUB_CLIENT_ID: string; | ||
GITHUB_CLIENT_SECRET: string; | ||
GITHUB_CALLBACK_URL: string; | ||
GITHUB_SCOPE: string; | ||
ACCESS_TOKEN_VALIDITY: string; | ||
API_BASE_URL: string; | ||
GOOGLE_CLIENT_ID: string; | ||
GOOGLE_CLIENT_SECRET: string; | ||
GOOGLE_CALLBACK_URL: string; | ||
GOOGLE_SCOPE: string; | ||
WEB_URL: string; | ||
MAIL_HOST: string; | ||
MAIL_PORT: number; | ||
MAIL_USER: string; | ||
MAIL_PASSWORD: string; | ||
AWS_ACCESS_KEY: string; | ||
AWS_SECRET_KEY: string; | ||
AWS_REGION: string; | ||
STRIPE_SECRET_KEY: string; | ||
STRIPE_WEBHOOK_SECRET: string; | ||
} | ||
} |