Skip to content

Commit 86e4ba8

Browse files
authored
Merge pull request #814 from trgwii/feature/docker-env-secrets-from-files
Support reading env_FILE keys from file paths, closes #813
2 parents 83a5e97 + 630f96d commit 86e4ba8

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

server/env.js

+15-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
require("dotenv").config();
22
const { cleanEnv, num, str, bool } = require("envalid");
3+
const { readFileSync } = require("node:fs");
34

45
const supportedDBClients = [
56
"pg",
@@ -25,7 +26,7 @@ if (process.argv.includes("--production")) {
2526
process.env.NODE_ENV = "production";
2627
}
2728

28-
const env = cleanEnv(process.env, {
29+
const spec = {
2930
PORT: num({ default: 3000 }),
3031
SITE_NAME: str({ example: "Kutt", default: "Kutt" }),
3132
DEFAULT_DOMAIN: str({ example: "kutt.it", default: "localhost:3000" }),
@@ -64,6 +65,18 @@ const env = cleanEnv(process.env, {
6465
REPORT_EMAIL: str({ default: "" }),
6566
CONTACT_EMAIL: str({ default: "" }),
6667
NODE_APP_INSTANCE: num({ default: 0 }),
67-
});
68+
};
69+
70+
for (const key in spec) {
71+
const file_key = key + '_FILE';
72+
if (!(file_key in process.env)) continue;
73+
try {
74+
process.env[key] = readFileSync(process.env[file_key], 'utf8').trim();
75+
} catch {
76+
// on error, env_FILE just doesn't get applied.
77+
}
78+
}
79+
80+
const env = cleanEnv(process.env, spec);
6881

6982
module.exports = env;

0 commit comments

Comments
 (0)