forked from geoffreyyip/eventroller
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocal_settings.py.example
More file actions
26 lines (25 loc) · 861 Bytes
/
local_settings.py.example
File metadata and controls
26 lines (25 loc) · 861 Bytes
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
# [Updated 07/18/2017]
EVENT_SOURCES = {
'example.com': {
'crm_type': 'actionkit_api',
'ak_secret': 'foobar',
'api_user': 'xyz',
'api_password': 'password',
'base_url': 'https://roboticdogs.actionkit.com',
'ignore_host_ids': '123,345',
'max_event_load': 100,
},
'facebook-example': {
'crm_type': 'facebook',
# Get app_id and app_secret from your app dashboard
# Go to developers.facebook.com/apps and click on your app to
# get there
'app_id': '0123456789',
'app_secret': 'abcdefghijklmnopqrstuvwxyz1234567890',
# insert Access Token from developers.facebook.com/tools/explorer
'auth_token': 'abcdefghijklmnopqrstuvwxyz1234567890',
'token_expiration': '2017-09-10',
'user_id': 'Your Name',
},
}
DEBUG = True