From c118306ceb726b3ead61c55cd9b2d5c58b8e5045 Mon Sep 17 00:00:00 2001 From: hippoz <10706925-hippoz@users.noreply.gitlab.com> Date: Sun, 30 Oct 2022 23:16:03 +0200 Subject: [PATCH] bridge: fix naming of env variable --- discord-waffle-bridge/src/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord-waffle-bridge/src/config.js b/discord-waffle-bridge/src/config.js index b77d790..d8d2023 100644 --- a/discord-waffle-bridge/src/config.js +++ b/discord-waffle-bridge/src/config.js @@ -1,7 +1,7 @@ import * as dotenv from "dotenv"; dotenv.config(); -export const WAFFLE_API_BASE = process.env.WAFFLE_BASE ?? "http://localhost:3000/api/v1"; +export const WAFFLE_API_BASE = process.env.WAFFLE_API_BASE ?? "http://localhost:3000/api/v1"; export const WAFFLE_GATEWAY_BASE = process.env.WAFFLE_GATEWAY_BASE ?? "ws://localhost:3000/gateway"; export const WAFFLE_TOKEN = process.env.WAFFLE_TOKEN; export const DISCORD_TOKEN = process.env.DISCORD_TOKEN;