move to dotenv + custom env validations

ref #18
This commit is contained in:
Philipp Dormann 2020-12-09 19:40:08 +01:00
parent 4cfe9df429
commit 622bdf7a3f
4 changed files with 28 additions and 9 deletions

View File

@ -1,4 +1,4 @@
import { config } from 'dotenv-safe'; import { config } from 'dotenv';
config(); config();
export default { export default {

View File

@ -29,6 +29,7 @@
"class-validator-jsonschema": "^2.0.3", "class-validator-jsonschema": "^2.0.3",
"consola": "^2.15.0", "consola": "^2.15.0",
"cors": "^2.8.5", "cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1", "express": "^4.17.1",
"helmet": "^4.2.0", "helmet": "^4.2.0",
"jsonwebtoken": "^8.5.1", "jsonwebtoken": "^8.5.1",
@ -45,14 +46,13 @@
}, },
"devDependencies": { "devDependencies": {
"@types/cors": "^2.8.8", "@types/cors": "^2.8.8",
"@types/dotenv-safe": "^8.1.1", "@types/dotenv": "^8.2.0",
"@types/express": "^4.17.9", "@types/express": "^4.17.9",
"@types/jsonwebtoken": "^8.5.0", "@types/jsonwebtoken": "^8.5.0",
"@types/multer": "^1.4.4", "@types/multer": "^1.4.4",
"@types/node": "^14.14.9", "@types/node": "^14.14.9",
"@types/swagger-ui-express": "^4.1.2", "@types/swagger-ui-express": "^4.1.2",
"@types/uuid": "^8.3.0", "@types/uuid": "^8.3.0",
"dotenv-safe": "^8.2.0",
"nodemon": "^2.0.6", "nodemon": "^2.0.6",
"sqlite3": "^5.0.0", "sqlite3": "^5.0.0",
"ts-node": "^9.0.0", "ts-node": "^9.0.0",

View File

@ -2,7 +2,7 @@ import consola from "consola";
import "reflect-metadata"; import "reflect-metadata";
import { createExpressServer } from "routing-controllers"; import { createExpressServer } from "routing-controllers";
import authchecker from "./authchecker"; import authchecker from "./authchecker";
import { config } from './config'; import { config, e as errors } from './config';
import loaders from "./loaders/index"; import loaders from "./loaders/index";
import { ErrorHandler } from './middlewares/ErrorHandler'; import { ErrorHandler } from './middlewares/ErrorHandler';
@ -23,4 +23,9 @@ async function main() {
); );
}); });
} }
main(); if (errors === 0) {
main();
} else {
console.log("error");
// something's wrong
}

View File

@ -1,8 +1,22 @@
import * as dotenvSafe from "dotenv-safe"; import { config as configDotenv } from 'dotenv';
dotenvSafe.config(); configDotenv();
export const config = { export const config = {
internal_port: process.env.APP_PORT || 4010, internal_port: parseInt(process.env.APP_PORT) || 4010,
development: process.env.NODE_ENV === "production", development: process.env.NODE_ENV === "production",
jwt_secret: process.env.JWT_SECRET || "secretjwtsecret", jwt_secret: process.env.JWT_SECRET || "secretjwtsecret",
phone_validation_countrycode: process.env.PHONE_COUNTRYCODE || "ZZ" phone_validation_countrycode: process.env.PHONE_COUNTRYCODE || "ZZ"
} }
let errors = 0
if (typeof config.internal_port !== "number") {
errors++
}
if (typeof config.phone_validation_countrycode !== "string") {
errors++
}
if (config.phone_validation_countrycode.length !== 2) {
errors++
}
if (typeof config.development !== "boolean") {
errors++
}
export let e = errors