1
1
require ( "dotenv" ) . config ( ) ;
2
2
const { cleanEnv, num, str, bool } = require ( "envalid" ) ;
3
+ const { readFileSync } = require ( "node:fs" ) ;
3
4
4
5
const supportedDBClients = [
5
6
"pg" ,
@@ -25,7 +26,7 @@ if (process.argv.includes("--production")) {
25
26
process . env . NODE_ENV = "production" ;
26
27
}
27
28
28
- const env = cleanEnv ( process . env , {
29
+ const spec = {
29
30
PORT : num ( { default : 3000 } ) ,
30
31
SITE_NAME : str ( { example : "Kutt" , default : "Kutt" } ) ,
31
32
DEFAULT_DOMAIN : str ( { example : "kutt.it" , default : "localhost:3000" } ) ,
@@ -64,6 +65,18 @@ const env = cleanEnv(process.env, {
64
65
REPORT_EMAIL : str ( { default : "" } ) ,
65
66
CONTACT_EMAIL : str ( { default : "" } ) ,
66
67
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 ) ;
68
81
69
82
module . exports = env ;
0 commit comments