Skip to content

Commit

Permalink
commit4
Browse files Browse the repository at this point in the history
  • Loading branch information
RishithaMamidala committed Aug 13, 2024
1 parent 6243a66 commit 3867121
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions backend/backend/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
# See https://docs.djangoproject.com/en/5.0/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
# SECRET_KEY = os.getenv('SECRET_KEY')
SECRET_KEY = os.environ['SECRET_KEY']
#SPOONACULAR_API_KEY = os.getenv('SPOONACULAR_API_KEY')
SPOONACULAR_API_KEY = os.environ['SPOONACULAR_API_KEY']
SECRET_KEY = os.getenv('SECRET_KEY')
#SECRET_KEY = os.environ['SECRET_KEY']
SPOONACULAR_API_KEY = os.getenv('SPOONACULAR_API_KEY')
#SPOONACULAR_API_KEY = os.environ['SPOONACULAR_API_KEY']

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
Expand Down

0 comments on commit 3867121

Please sign in to comment.