Skip to content

Commit

Permalink
Added more vars to the env definition
Browse files Browse the repository at this point in the history
  • Loading branch information
renatodellosso committed Jul 7, 2024
1 parent 4f9fac4 commit d2d9c78
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions enviroment.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@ declare global {
interface ProcessEnv {
NEXTAUTH_URL: string;
NEXTAUTH_SECRET: string;
NEXT_PUBLIC_API_URL: string;

GOOGLE_ID: string;
GOOGLE_SECRET: string;
GITHUB_SECRET: string;

GITHUB_ID: string;
GITHUB_SECRET: string;

MONGODB_URI: string;
DB: string;
Expand All @@ -23,15 +26,14 @@ declare global {

DEFAULT_IMAGE: string;
IMAGE_UPLOAD_DIR: string;

FILL_TEAMS: string;

SLACK_KEY: string;
SLACK_BOT_TOKEN: string;
SLACK_CLIENT_ID: string;
SLACK_CLIENT_SECRET: string;
SLACK_CHANNEL: string;

NEXT_PUBLIC_API_URL: string;
SLACK_APP_TOKEN: string;
SLACK_SIGNING_SECRET: string;

NODE_ENV: "development" | "production";
}
Expand Down

0 comments on commit d2d9c78

Please sign in to comment.