You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
325 B
JavaScript
13 lines
325 B
JavaScript
import dotenv from "dotenv";
|
|
dotenv.config();
|
|
|
|
export const store = {
|
|
users: [],
|
|
clientID: process.env.APP_SPOTIFY_CLIENT_ID,
|
|
clientSecret: process.env.APP_SPOTIFY_CLIENT_SECRET,
|
|
redirectURL: process.env.APP_SPOTIFY_REDIRECT_URI,
|
|
mongodbConnstring: process.env.MONGODB_CONNSTRING,
|
|
};
|
|
|
|
console.log('store:', store);
|