forked from vim-awesome/vim-awesome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
secrets.py.example
29 lines (23 loc) · 1.05 KB
/
secrets.py.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
"""This is a template for secrets.py (which is not checked in and you must
create yourself), containing authentication codes/tokens and other secrets.
"""
# This is a revokable token that we use for making authenticated GitHub API
# calls. GitHub provides higher (more lenient) rate limits for authenticated
# calls.
#
# This is optional. If you don't have this in your secrets.py, our scraper will
# use unauthenticated calls, which will be subject to stricter rate limits.
#
# See https://github.com/blog/1509-personal-api-tokens to create one for
# yourself and put here.
GITHUB_PERSONAL_ACCESS_TOKEN = "lalalalalalimnottellingyou"
# For notifying our HipChat room when someone submits a plugin
HIPCHAT_ROOM_ID = 13
HIPCHAT_TOKEN = "itwasrareiwasthere"
# For notifying our Gitter room
GITTER_ROOM_ID = '57126998187bb6f0eadfc180' # vim-awesome/vim-awesome/dev-logging
GITTER_TOKEN = "itwasrareiwasthere" # https://developer.gitter.im/apps
# For logging exceptions to Sentry
SENTRY_DSN = None
# Shh, don't let the NSA know we have this.
US_NUCLEAR_LAUNCH_CODE = "00000000"