-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
Move credentials.json to .env file #53
Comments
See #18 |
Copying over the It could be nice to also add an extra option to the launchpad CLI to allow selecting specific dotenv files, and perhaps cascade them. Example: Given the following dotenv files (assuming files ending in
Running {
"API_DATASET": "production",
"PC_NAME": "bar",
"HELLO": "world"
} Running {
"API_DATASET": "development",
"PC_NAME": "bar",
"HELLO": "world"
} |
This should align more with best practices for storing sensitive info and dealing with test/live environments.
Need to consider possible backwards compatibility with:
credentials.json
launchpad.json
config parametersAlso should think about whether there's a global credentials/sensitive info manager class or just one for content sources.
cc @pingevt
The text was updated successfully, but these errors were encountered: