Skip to content

Commit 278573e

Browse files
author
hirsch88
committed
🐛 Fix builded app
1 parent 83d052b commit 278573e

6 files changed

+37
-18
lines changed

package-scripts.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module.exports = {
1111
* Starts the builded app from the dist directory
1212
*/
1313
start: {
14-
script: 'node dist/app.js',
14+
script: 'cross-env NODE_ENV=production node dist/app.js',
1515
description: 'Starts the builded app from the dist directory'
1616
},
1717
/**

src/env.ts

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

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

77
/**
88
* Load .env file or for tests the .env.test file.
@@ -27,15 +27,16 @@ export const env = {
2727
port: normalizePort(process.env.PORT || getOsEnv('APP_PORT')),
2828
banner: toBool(getOsEnv('APP_BANNER')),
2929
dirs: {
30-
migrations: getOsEnvArray('TYPEORM_MIGRATIONS'),
31-
migrationsDir: getOsEnv('TYPEORM_MIGRATIONS_DIR'),
32-
entities: getOsEnvArray('TYPEORM_ENTITIES'),
33-
subscribers: getOsEnvArray('TYPEORM_SUBSCRIBERS'),
34-
controllers: getOsEnvArray('CONTROLLERS'),
35-
middlewares: getOsEnvArray('MIDDLEWARES'),
36-
interceptors: getOsEnvArray('INTERCEPTORS'),
37-
queries: getOsEnvArray('QUERIES'),
38-
mutations: getOsEnvArray('MUTATIONS'),
30+
migrations: getOsPaths('TYPEORM_MIGRATIONS'),
31+
migrationsDir: getOsPath('TYPEORM_MIGRATIONS_DIR'),
32+
entities: getOsPaths('TYPEORM_ENTITIES'),
33+
entitiesDir: getOsPath('TYPEORM_ENTITIES_DIR'),
34+
controllers: getOsPaths('CONTROLLERS'),
35+
middlewares: getOsPaths('MIDDLEWARES'),
36+
interceptors: getOsPaths('INTERCEPTORS'),
37+
subscribers: getOsPaths('SUBSCRIBERS'),
38+
queries: getOsPaths('QUERIES'),
39+
mutations: getOsPaths('MUTATIONS'),
3940
},
4041
},
4142
log: {

src/lib/env/utils.ts

+20
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,27 @@
1+
import { join } from 'path';
2+
13
export function getOsEnv(key: string): string {
24
return process.env[key] as string;
35
}
46

7+
export function getPath(path: string): string {
8+
return (process.env.NODE_ENV === 'production')
9+
? join(process.cwd(), path.replace('src/', 'dist/').slice(0, -3) + '.js')
10+
: join(process.cwd(), path);
11+
}
12+
13+
export function getPaths(paths: string[]): string[] {
14+
return paths.map(p => getPath(p));
15+
}
16+
17+
export function getOsPath(key: string): string {
18+
return getPath(getOsEnv(key));
19+
}
20+
21+
export function getOsPaths(key: string): string[] {
22+
return getPaths(getOsEnvArray(key));
23+
}
24+
525
export function getOsEnvArray(key: string, delimiter: string = ','): string[] {
626
return process.env[key] && process.env[key].split(delimiter) || [];
727
}

src/lib/graphql/importClassesFromDirectories.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export function importClassesFromDirectories(directories: string[], formats: str
2727
return formats.indexOf(path.extname(file)) !== -1 && dtsExtension !== '.d.ts';
2828
})
2929
.map(file => {
30-
return require(path.join(process.cwd(), file));
30+
return require(file);
3131
});
3232

3333
return loadFileClasses(dirs, []);

src/loaders/eventDispatchLoader.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import * as glob from 'glob';
22
import { MicroframeworkLoader, MicroframeworkSettings } from 'microframework-w3tec';
3-
import * as path from 'path';
43

54
import { env } from '../env';
65

@@ -16,7 +15,7 @@ export const eventDispatchLoader: MicroframeworkLoader = (settings: Microframewo
1615
patterns.forEach((pattern) => {
1716
glob(pattern, (err: any, files: string[]) => {
1817
for (const file of files) {
19-
require(path.join(process.cwd(), file));
18+
require(file);
2019
}
2120
});
2221
});

src/loaders/expressLoader.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { Application } from 'express';
22
import { MicroframeworkLoader, MicroframeworkSettings } from 'microframework-w3tec';
3-
import * as path from 'path';
43
import { createExpressServer } from 'routing-controllers';
54

65
import { authorizationChecker } from '../auth/authorizationChecker';
@@ -24,9 +23,9 @@ export const expressLoader: MicroframeworkLoader = (settings: MicroframeworkSett
2423
* We can add options about how routing-controllers should configure itself.
2524
* Here we specify what controllers should be registered in our express server.
2625
*/
27-
controllers: env.app.dirs.controllers.map(controller => path.join(process.cwd(), controller)),
28-
middlewares: env.app.dirs.middlewares.map(middleware => path.join(process.cwd(), middleware)),
29-
interceptors: env.app.dirs.interceptors.map(interceptor => path.join(process.cwd(), interceptor)),
26+
controllers: env.app.dirs.controllers,
27+
middlewares: env.app.dirs.middlewares,
28+
interceptors: env.app.dirs.interceptors,
3029

3130
/**
3231
* Authorization features

0 commit comments

Comments
 (0)