dorianriepe/personal-assistant

Security: Recipe App ID & Key

Closed this issue · 0 comments

in wrapper/recipe_wrapper.py:

Please revoke current app_id and app_key from api access, create new key & id and move to environment variables like this:

Powershell:

$env:RECIPE_APP_ID = 'MYULTRASECRETAPPID'
$env:RECIPE_APP_KEY = 'MYULTRASECRETAPPKEY'

Python:

"app_id": os.environ.get('RECIPE_APP_ID')
"app_key": os.environ.get('RECIPE_APP_KEY')