-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefaults.js
More file actions
37 lines (37 loc) · 1.3 KB
/
defaults.js
File metadata and controls
37 lines (37 loc) · 1.3 KB
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
module.exports = {
<<<<<<< HEAD
listen: "8080",
dbserver: 'localhost',
db: 'fredge',
dblogin: 'testuser',
dbpwd: 'testpassword',
// URL to redirect the user's browser to
providerURL: 'https://civi.dev/civi',
// BackendURL will be used for direct Dash->Drupal requests
providerBackendURL: 'http://localhost/civi',
consumerKey: 'kKq6LbU4ctDUzubSUdHJ7Pn9NvVWwQ2f',
consumerSecret: 'JfGs4nnfyoRQ9i9JQeTYP7geCEKQrenX',
sessionSecret: 'ds87naowiy3icaywri73tcin7eyyeI8634I71NYFIEA764'
=======
listen: '8080',
dbserver: 'localhost',
db: 'fredge',
civicrmDb: 'civicrm',
dblogin: 'testuser',
dbpwd: 'testpassword',
userDbServer: 'localhost',
userDb: 'fredge',
userDbLogin: 'testuser',
userDbPwd: 'testpassword',
// URL to redirect the user's browser to
providerURL: 'https://civi.dev/civi',
// BackendURL will be used for direct Dash->Drupal requests
providerBackendURL: 'http://localhost/civi',
// If providerBackendIP is set, we override DNS resolution for the hostname
// given in providerBackendURL. This can be useful for SSL behind firewalls
consumerKey: 'kKq6LbU4ctDUzubSUdHJ7Pn9NvVWwQ2f',
consumerSecret: 'JfGs4nnfyoRQ9i9JQeTYP7geCEKQrenX',
sessionSecret: 'ds87naowiy3icaywri73tcin7eyyeI8634I71NYFIEA764',
cacheDuration: 300000 // 5 min in ms
>>>>>>> release-2
};