-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.config.js
29 lines (29 loc) · 1.29 KB
/
app.config.js
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
export const Config = {
id: "churning-search", // id for app (use in local storage)
name: "Churning Search", // App name and title
analyticsId: "G-8EKXCHKLR9", // Google Analytics measurement id
domain: "churning.io",
hosts: [
"churning.io",
"garettg.github.io"
], // GitHub and custom domain (if there is one)
author: "garettg", // reddit username of app author
defaultSubreddit: "churning", // subreddit name
subreddits: { // key is subreddit, value is the start date the subreddit
churning: "2012-12-11",
awardtravel: "2015-01-07",
creditcards: "2008-09-14",
churningcanada: "2014-02-20",
CanadianAwardTravel: "2018-03-12"
},
defaultTimeRange: 366, // default time range on search (must match one of SearchRange keys)
enableAcronymSearch: false, // enable the use of modified queries to include acronyms to broaden search,
enableGaEvents: true, // enable google analytics
enableCustomEvents: true, // enable the usage of custom event to Woopra
disableSearch: false, // turns off the UI in downtimes
announce: {
enable: false,
color: "warning", // info, failure, warning, success
message: "Because of scheduled API maintenance, search will be unavailable until July 28."
}
}