We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
config.json
.env
Currently, the project uses config.json for configuration, making it harder to manage environment-specific settings and sensitive data.
Use .env with the dotenv package to store configuration values securely and dynamically.
dotenv
config.js
npm install dotenv
The text was updated successfully, but these errors were encountered:
Done 5cc48fb
Sorry, something went wrong.
birajrai
No branches or pull requests
Switching from
config.json
to.env
Is your feature request related to a problem?
Currently, the project uses
config.json
for configuration, making it harder to manage environment-specific settings and sensitive data.Describe the solution you'd like
Use
.env
with thedotenv
package to store configuration values securely and dynamically.Describe alternatives you've considered
config.json
but ignoring environment-specific versions.config.js
file that loads values from environment variables.Additional context
.env
does not support nested objects, so some restructuring may be needed..env
are always strings, requiring manual type conversion.dotenv
package needs to be installed (npm install dotenv
).The text was updated successfully, but these errors were encountered: