Last active
July 7, 2021 23:51
-
-
Save AnsonT/a16988d31fdcd5c2ff4d05b4de1715d0 to your computer and use it in GitHub Desktop.
Node.JS Config example #dotenv #convict #nodejs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LOG_LEVEL= | |
CASSANDRA_KEYSPACE= | |
CASSANDRA_USER= | |
CASSANDRA_PASSWORD= | |
CASSANDRA_BOOTSTRAP= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import dotenv from 'dotenv' | |
import convict from 'convict' | |
import { join } from 'path' | |
dotenv.config() | |
const defaultEnv = 'production' | |
const env = process.env.NODE_ENV || defaultEnv | |
const envPath = join(__dirname, '..', `.env.${env}`) | |
dotenv.config({ path: envPath }) | |
convict.addFormat({ | |
name: 'string-array', | |
validate: (val) => {}, | |
coerce: (val) => val.split(',').map(item => item.trim()) | |
}) | |
const config = convict({ | |
logLevel: { | |
doc: 'The output log level', | |
format: ['DEBUG', 'INFO', 'ERROR'], | |
default: 'INFO', | |
env: 'LOG_LEVEL' | |
}, | |
env: { | |
doc: 'The application environment', | |
format: ['production', 'ote', 'test', 'development'], | |
default: defaultEnv, | |
env: 'NODE_ENV' | |
}, | |
ip: { | |
doc: 'The IP address to bind', | |
format: 'ipaddress', | |
default: '127.0.0.1', | |
env: 'IP_ADDRESS' | |
}, | |
port: { | |
doc: 'The port to bind', | |
format: 'port', | |
default: 3000, | |
env: 'PORT' | |
}, | |
db: { | |
bootstrap: { | |
doc: 'Cassandra bootstrap IP addresses', | |
format: 'string-array', | |
default: ['127.0.0.1'], | |
env: 'CASSANDRA_BOOTSTRAP' | |
}, | |
userName: { | |
doc: 'Cassandra user name', | |
format: String, | |
default: null, | |
env: 'CASSANDRA_USER' | |
}, | |
password: { | |
doc: 'Cassandra password', | |
format: String, | |
default: null, | |
sensitive: true, | |
env: 'CASSANDRA_PASSWORD' | |
}, | |
keyspace: { | |
doc: 'Cassandra keyspace', | |
default: null, | |
format: String, | |
env: 'CASSANDRA_KEYSPACE' | |
} | |
} | |
}) | |
export default config.getProperties() |
const envPath = join(__dirname, '..', .env.${env}
)
dotenv.config({ path: envPath })
In this example, you'll want a '.env.production' file in the directory above the config.js file.
You can just load the .env file using dotenv.config() function
Thanks AnsonT, I realised I was not setting any values in the .env file.
…On Fri, Jun 19, 2020, 4:28 PM AnsonT ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
const envPath = join(__dirname, '..', .env.${env})
dotenv.config({ path: envPath })
In this example, you'll want a '.env.production' file in the directory
above the config.js file.
You can just load the .env file using dotenv.config() function
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<https://gist.github.com/a16988d31fdcd5c2ff4d05b4de1715d0#gistcomment-3347736>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAEJ3XE2GGPZKL5KZVQBOCLRXOGZHANCNFSM4OC2ICBA>
.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
been trying to get this to work for days now, Have been able to use convict to read .env files