From 0a727b94e7c2434f404397bc48ed1eb5f59c6e07 Mon Sep 17 00:00:00 2001 From: ySnoopyDogy Date: Sun, 19 Nov 2023 19:29:24 -0300 Subject: [PATCH] chore: remove .env unused variables --- .env.example | 3 --- typings/environment.d.ts | 4 +--- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.env.example b/.env.example index 4aa9daa..9070cd5 100644 --- a/.env.example +++ b/.env.example @@ -1,9 +1,6 @@ GA_ID= -API_URL=https://api.menherabot.xyz/info -BLOG_URL=https://blog.menherabot.xyz/ NEXT_PUBLIC_BOT_INVITE_URL=https://discord.com/api/oauth2/authorize?client_id=708014856711962654&permissions=311296&scope=bot+applications.commands NEXT_PUBLIC_GITHUB_URL=https://github.com/MenheraBot/MenheraBot NEXT_PUBLIC_SUPPORT_URL=https://discord.com/invite/fZMdQbA NEXT_PUBLIC_API_URL=https://api.menherabot.xyz/info -NEXT_PUBLIC_WS_URL=wss://api.menherabot.xyz/info/ws NEXT_PUBLIC_STATUSPAGE_URL=https://menherabot.statuspage.io/ \ No newline at end of file diff --git a/typings/environment.d.ts b/typings/environment.d.ts index f21aa1b..0cf48d7 100644 --- a/typings/environment.d.ts +++ b/typings/environment.d.ts @@ -1,14 +1,12 @@ declare global { namespace NodeJS { interface ProcessEnv { - API_URL: string; - BLOG_URL: string; NEXT_PUBLIC_API_URL: string; - NEXT_PUBLIC_WS_URL: string; NEXT_PUBLIC_GITHUB_URL: string; NEXT_PUBLIC_SUPPORT_URL: string; NEXT_PUBLIC_BOT_INVITE_URL: string; NEXT_PUBLIC_GA_ID: string; + NEXT_PUBLIC_STATUSPAGE_URL: string; } } }