somakeit / smib

1 stars 0 forks source link

Investigate better ways of storing the sensitive credentials #39

Open sam57719 opened 4 months ago

sam57719 commented 4 months ago
sam57719 commented 4 months ago

python-decouple has a built in docker-secrets repository parser

from decouple import Config, RepositorySecret

config = Config(RepositorySecret('secrets'))

SLACK_APP_TOKEN = config('SLACK_APP_TOKEN')

print(SLACK_APP_TOKEN)
sam57719 commented 4 months ago

Bitwarden secrets?