This is a good first issue for anyone looking into contributing to our project!
We need to have in our Readme in the "installation" section, the full updated list of the environment variables used in this service.
Each env var should be listed together with a short description (and if possible, some example of values) about it. For example, adding the REPORTING_POSTGRES_USER env var to this list, it would look like this:
- REPORTING_POSTGRES_USER: Defines the postgres DB user, for example: "someUser"
To get the list of the environment variables in this project you'll need to look into this settings config file: app/core/config.py, and look for calls that look like any of these calls:
environ.get("REPORTING_POSTGRES_USER") The env var here is: REPORTING_POSTGRES_USER
Please do a single PR that includes all of these env vars and their description in the README file.
This is a good first issue for anyone looking into contributing to our project!
We need to have in our Readme in the "installation" section, the full updated list of the environment variables used in this service.
Each env var should be listed together with a short description (and if possible, some example of values) about it. For example, adding the
REPORTING_POSTGRES_USERenv var to this list, it would look like this:To get the list of the environment variables in this project you'll need to look into this settings config file: app/core/config.py, and look for calls that look like any of these calls:
environ.get("REPORTING_POSTGRES_USER")The env var here is:REPORTING_POSTGRES_USERPlease do a single PR that includes all of these env vars and their description in the README file.