Right now we don't have a way to systematically integrate secrets (passwords, private keys, etc.) into the deployment process. We haven't have a need for passwords yet, but maybe we'll need to store them with rabbit or changing the gunicorn process to use the www-data user. The same goes for SECRET_KEY if you host on public repository. If you find any examples of this, add them below:
I started a crude implementation using a local, non-committed yaml file here. It then uses upload_local_settings to push a template to the server.
Mark said he's moved to setting environment variables on other projects.
Right now we don't have a way to systematically integrate secrets (passwords, private keys, etc.) into the deployment process. We haven't have a need for passwords yet, but maybe we'll need to store them with rabbit or changing the gunicorn process to use the www-data user. The same goes for
SECRET_KEY
if you host on public repository. If you find any examples of this, add them below: