Skip to content

Commit

Permalink
added default settings
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyhalight committed Oct 6, 2023
1 parent 8bb757a commit 454c918
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

load_env()

PORT = os.environ.get('PORT') or 3312
API_KEY = os.environ.get('API_KEY') or ''
YANDEX_COOKIE = os.environ.get('YANDEX_COOKIE') or ''
PORT = os.environ.get('PORT', 3312)
API_KEY = os.environ.get('API_KEY', '')
YANDEX_COOKIE = os.environ.get('YANDEX_COOKIE', '')

0 comments on commit 454c918

Please sign in to comment.