Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
Moved VECTOR_PI_USERNAME and SAVIO_PROJECT_FOR_VECTOR_USERS settings out of local_settings.py.sample and into settings_template.tmpl such that they can be configured via YML variables.
Updated the Docker README to discuss some use cases that may require overrides.yml to be specified in the Docker development environment, including these Vector-related YML variables.
Type of change
Bug fix (non-breaking change which fixes an issue)
How Has This Been Tested?
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration.
Add the new section in main.copyme to main.yml, leaving the values blank.
Create or update bootstrap/development/docker/config/overrides.yml, filling in the values with the same ones removed from local_settings.py.sample.
Re-run the step for generating settings files (consider backing up existing ones first).
Ensure that local_settings.py does not have the settings anymore, but that dev_settings.py does.
In the Django shell, check that the settings have the expected values.
PR Self Evaluation
Strikethrough things that don’t make sense for your PR.
[x] My code follows the agreed upon best practices
[x] I have commented my code, particularly in hard-to-understand areas
[x] I have made corresponding changes to the documentation (if needed)
[x] My changes generate no new warnings
[x] Any dependent changes have been merged and published in the appropriate modules
Description
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
VECTOR_PI_USERNAME
andSAVIO_PROJECT_FOR_VECTOR_USERS
settings out oflocal_settings.py.sample
and intosettings_template.tmpl
such that they can be configured via YML variables.README
to discuss some use cases that may requireoverrides.yml
to be specified in the Docker development environment, including these Vector-related YML variables.Type of change
How Has This Been Tested?
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration.
main.copyme
tomain.yml
, leaving the values blank.bootstrap/development/docker/config/overrides.yml
, filling in the values with the same ones removed fromlocal_settings.py.sample
.local_settings.py
does not have the settings anymore, but thatdev_settings.py
does.PR Self Evaluation
Strikethrough things that don’t make sense for your PR.