Abheek Dhawan
3 years ago
1 changed files with 4 additions and 4 deletions
@ -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!; |
|||
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'; |
Loading…
Reference in new issue