-
Notifications
You must be signed in to change notification settings - Fork 1
/
app-config.sample.js
48 lines (43 loc) · 1.24 KB
/
app-config.sample.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/**
* YouPrefer Application Config File
* app-config.sample.js
*
* This is a configuration file for 3rd party services that this application
* uses.
*
* Copy this sample file and change its name to `app-config.js`, retreive the
* required configuration info and update this file accordingly. Make sure
* to not track this file in your VCS, as it may contain sensitive
* information.
*
* You can find more "configuration" in the `./strings.jsx` key. I'm too lazy
* to move some the stuff from there to here.
*
* - ԅ(≖‿≖ԅ)
*
*/
export default {
// Base config
appName: 'YouPrefer',
version: 'v1.0.0',
rootUrl: 'https://youprefer.co.il',
serviceWorkerUrl: '/service-worker.js',
supportEmail: '[email protected]',
androidAppUrl: 'https://play.google.com/store/apps/details?id=com.yardnsm.youprefer',
// Config for Firebase
firebase: {
apiKey: '{{ FIREBASE_API_KEY }}',
authDomain: '{{ FIREBASE_AUTH_DOMAIN }}',
databaseURL: '{{ FIREBASE_DATABASE_URL }}',
projectId: '{{ FIREBASE_PROJECT_ID }}',
},
// Config for Adsense
adsense: {
client: '{{ ADSENSE_CLIENT }}',
slot: '{{ ADSENSE_SLOT }}',
},
// Config for Google Analytics
analytics: {
trackingId: '{{ GA_TRACKING_ID }}',
},
};