Skip to content

Commit 5685239

Browse files
author
hirsch
committed
👌 Add some code review changes
1 parent 4f635a2 commit 5685239

File tree

5 files changed

+38
-27
lines changed

5 files changed

+38
-27
lines changed

.env.test

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ MUTATIONS=src/api/mutations/**/*Mutation.ts
4141
#
4242
GRAPHQL_ENABLED=true
4343
GRAPHQL_ROUTE=/graphql
44+
GRAPHQL_EDITOR=false
4445

4546
#
4647
# Swagger

package-scripts.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ module.exports = {
88
scripts: {
99
default: 'nps start',
1010
/**
11-
* Starts the builded app from the dist directory
11+
* Starts the builded app from the dist directory.
1212
*/
1313
start: {
14-
script: 'cross-env NODE_ENV=production node dist/app.js',
15-
description: 'Starts the builded app from the dist directory'
14+
script: 'cross-env NODE_ENV=production node dist/src/app.js',
15+
description: 'Starts the builded app',
1616
},
1717
/**
1818
* Serves the current app and watches for changes to restart it
@@ -274,7 +274,7 @@ function banner(name) {
274274
}
275275

276276
function copy(source, target) {
277-
return `copyup ${source} ${target}`;
277+
return `copyfiles ${source} ${target}`;
278278
}
279279

280280
function run(path) {

package.json

+16-16
Original file line numberDiff line numberDiff line change
@@ -38,22 +38,6 @@
3838
}
3939
],
4040
"dependencies": {
41-
"@types/bcrypt": "^2.0.0",
42-
"@types/bluebird": "^3.5.18",
43-
"@types/chalk": "^2.2.0",
44-
"@types/commander": "^2.11.0",
45-
"@types/cors": "^2.8.1",
46-
"@types/dotenv": "^4.0.2",
47-
"@types/express": "^4.0.39",
48-
"@types/faker": "^4.1.2",
49-
"@types/figlet": "^1.2.0",
50-
"@types/helmet": "0.0.41",
51-
"@types/morgan": "^1.7.35",
52-
"@types/reflect-metadata": "0.1.0",
53-
"@types/serve-favicon": "^2.2.29",
54-
"@types/supertest": "^2.0.4",
55-
"@types/uuid": "^3.4.3",
56-
"@types/winston": "^2.3.7",
5741
"bcrypt": "3.0.1",
5842
"chalk": "^2.4.1",
5943
"class-validator": "0.9.1",
@@ -112,8 +96,24 @@
11296
},
11397
"license": "MIT",
11498
"devDependencies": {
99+
"@types/bcrypt": "^2.0.0",
100+
"@types/bluebird": "^3.5.18",
101+
"@types/chalk": "^2.2.0",
102+
"@types/commander": "^2.11.0",
103+
"@types/cors": "^2.8.1",
104+
"@types/dotenv": "^4.0.2",
105+
"@types/express": "^4.0.39",
106+
"@types/faker": "^4.1.2",
107+
"@types/figlet": "^1.2.0",
108+
"@types/helmet": "0.0.41",
115109
"@types/jest": "23.3.2",
110+
"@types/morgan": "^1.7.35",
116111
"@types/nock": "^9.1.3",
112+
"@types/reflect-metadata": "0.1.0",
113+
"@types/serve-favicon": "^2.2.29",
114+
"@types/supertest": "^2.0.4",
115+
"@types/uuid": "^3.4.3",
116+
"@types/winston": "^2.3.7",
117117
"cross-env": "^5.1.1",
118118
"jest": "23.6.0",
119119
"mock-express-request": "^0.2.0",

src/env.ts

+9-7
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ import * as dotenv from 'dotenv';
22
import * as path from 'path';
33

44
import * as pkg from '../package.json';
5-
import { getOsEnv, getOsPath, getOsPaths, normalizePort, toBool, toNumber } from './lib/env';
5+
import {
6+
getOsEnv, getOsEnvOptional, getOsPath, getOsPaths, normalizePort, toBool, toNumber
7+
} from './lib/env';
68

79
/**
810
* Load .env file or for tests the .env.test file.
@@ -41,17 +43,17 @@ export const env = {
4143
},
4244
log: {
4345
level: getOsEnv('LOG_LEVEL'),
44-
json: toBool(getOsEnv('LOG_JSON')),
46+
json: toBool(getOsEnvOptional('LOG_JSON')),
4547
output: getOsEnv('LOG_OUTPUT'),
4648
},
4749
db: {
4850
type: getOsEnv('TYPEORM_CONNECTION'),
49-
host: getOsEnv('TYPEORM_HOST'),
50-
port: toNumber(getOsEnv('TYPEORM_PORT')),
51-
username: getOsEnv('TYPEORM_USERNAME'),
52-
password: getOsEnv('TYPEORM_PASSWORD'),
51+
host: getOsEnvOptional('TYPEORM_HOST'),
52+
port: toNumber(getOsEnvOptional('TYPEORM_PORT')),
53+
username: getOsEnvOptional('TYPEORM_USERNAME'),
54+
password: getOsEnvOptional('TYPEORM_PASSWORD'),
5355
database: getOsEnv('TYPEORM_DATABASE'),
54-
synchronize: toBool(getOsEnv('TYPEORM_SYNCHRONIZE')),
56+
synchronize: toBool(getOsEnvOptional('TYPEORM_SYNCHRONIZE')),
5557
logging: toBool(getOsEnv('TYPEORM_LOGGING')),
5658
},
5759
graphql: {

src/lib/env/utils.ts

+8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
import { join } from 'path';
22

33
export function getOsEnv(key: string): string {
4+
if (typeof process.env[key] === 'undefined') {
5+
throw new Error(`Environment variable ${key} is not set.`);
6+
}
7+
48
return process.env[key] as string;
59
}
610

11+
export function getOsEnvOptional(key: string): string | undefined {
12+
return process.env[key];
13+
}
14+
715
export function getPath(path: string): string {
816
return (process.env.NODE_ENV === 'production')
917
? join(process.cwd(), path.replace('src/', 'dist/').slice(0, -3) + '.js')

0 commit comments

Comments
 (0)