mirror of
https://github.com/aleleba/create-node-ts-graphql-server.git
synced 2025-01-08 21:16:49 -06:00
18 lines
460 B
TypeScript
18 lines
460 B
TypeScript
import * as dotenv from 'dotenv';
|
|
|
|
dotenv.config();
|
|
|
|
export const deFaultValues = {
|
|
ENV: 'production',
|
|
PLAYGROUND_GRAPHQL: 'false',
|
|
WHITELIST_URLS: 'http://localhost',
|
|
PORT: '4000',
|
|
};
|
|
|
|
export const config = {
|
|
ENV: process.env.ENV,
|
|
PLAYGROUND_GRAPHQL: process.env.PLAYGROUND_GRAPHQL === 'true' ? true : false,
|
|
WHITELIST_URLS: process.env.WHITELIST_URLS ? process.env.WHITELIST_URLS.split(',') : deFaultValues.WHITELIST_URLS,
|
|
PORT: process.env.PORT,
|
|
};
|