make
# After update `setup.cfg`
make lockdeps
make deps# start docker:
sh scripts/00_start.shSecrets and configmaps should be declared with their respective types in the src.core.settings file.
In the case of secrets, we must only place their values in the .env file (non-versioned file).
python -m src.core.settings
> API_KEY='FOO'echo 'API_KEY=123' >> .env
python -m src.core.settings
> API_KEY='123'