mirror of
https://github.com/mjrode/WhatToWatch.git
synced 2026-01-07 05:59:42 -06:00
12 lines
296 B
JavaScript
12 lines
296 B
JavaScript
const testConfig = {
|
|
hostname: 'localhost',
|
|
port: 8080,
|
|
googleClientID: process.env.GOOGLE_CLIENT_ID,
|
|
googleClientSecret: process.env.GOOGLE_CLIENT_SECRET,
|
|
cookieKey: process.env.COOKIE_KEY,
|
|
movieApiKey: process.env.MOVIE_API_KEY,
|
|
logToConsole: true,
|
|
};
|
|
|
|
export default testConfig;
|