mirror of
https://github.com/mjrode/WhatToWatch.git
synced 2026-05-04 03:29:07 -05:00
11 lines
274 B
JavaScript
11 lines
274 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,
|
|
};
|
|
|
|
export default testConfig;
|