Skip to content

Commit

Permalink
Added settings to read from env
Browse files Browse the repository at this point in the history
  • Loading branch information
akhaku committed Apr 14, 2012
1 parent 8c3a51d commit 58632bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions evervim/settings.py
Expand Up @@ -147,9 +147,9 @@
}
}

EVERNOTE_HOST = ""
EVERNOTE_KEY = ""
EVERNOTE_SECRET = ""
EVERNOTE_HOST = os.environ['EVERNOTE_HOST']
EVERNOTE_KEY = os.environ['EVERNOTE_KEY']
EVERNOTE_SECRET = os.environ['EVERNOTE_SECRET']
EVERNOTE_OAUTH_TOKEN_VALIDITY = 1 # OAuth token validity in days: 1 for dev,
# 365 for prod after activation

Expand Down

0 comments on commit 58632bf

Please sign in to comment.