diff --git a/src/helpers/env.ts b/src/helpers/env.ts index 22b1b3d..c339592 100644 --- a/src/helpers/env.ts +++ b/src/helpers/env.ts @@ -1,6 +1,6 @@ import 'dotenv/config'; -export const clientId : string = process.env.CLIENT_ID!; -export const testingGuild : string = process.env.TESTING_GUILD!; -export const token : string = process.env.TOKEN!; -export const mongoUri : string = process.env.MONGO_URI!; \ No newline at end of file +export const clientId : string = process.env.CLIENT_ID || ''; +export const testingGuild : string = process.env.TESTING_GUILD || ''; +export const token : string = process.env.TOKEN || ''; +export const mongoUri : string = process.env.MONGO_URI || 'mongodb://mongo:27017/awesome'; \ No newline at end of file