Compare commits

...

1 Commits

Author SHA1 Message Date
PhilipWafula 7617a2f65b
Censors sensitive config values. 2021-07-01 11:10:40 +03:00
1 changed files with 2 additions and 0 deletions

View File

@ -34,6 +34,8 @@ elif args.v:
config = confini.Config(args.c, args.env_prefix)
config.process()
config.add(args.q, '_CELERY_QUEUE', True)
config.censor('API_KEY', 'AFRICASTALKING')
config.censor('API_USERNAME', 'AFRICASTALKING')
config.censor('PASSWORD', 'DATABASE')
logg.debug('config loaded from {}:\n{}'.format(args.c, config))