We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c71204a commit 9d4971cCopy full SHA for 9d4971c
src/config.ts
@@ -5,7 +5,7 @@ export const config = {
5
.get("NODE_ENV")
6
.default("development")
7
.asEnum(["production", "test", "development"]),
8
- BOT_TOKEN: env.get("BOT_TOKEN").required().asString(),
+ BOT_TOKEN: Deno.env.get("BOT_TOKEN").required().asString(),
9
10
LOCK_STORE: env.get("LOCK_STORE").default("memory").asEnum(["memory"]),
11
};
0 commit comments