-
Notifications
You must be signed in to change notification settings - Fork 6
/
local.config.js.tmpl
65 lines (54 loc) · 1.38 KB
/
local.config.js.tmpl
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
const config = {
brand: 'My Brand',
company: 'My Company',
description: 'My SEO optimised meta description',
libcrowdsHost: process.env.NODE_ENV === 'development'
? 'http://127.0.0.1:8080'
: 'http://xxxx.com',
pybossaHost: process.env.NODE_ENV === 'development'
? 'http://127.0.0.1:5000'
: 'http://xxxx.com',
tagline: 'My inspiring tagline',
explicates: {
baseURL: 'http://127.0.0.1:3000'
}
}
// Twitter
// config.twitter = 'mytwitterhandle'
// Contact email address
// config.email = '[email protected]'
// GitHub account
// config.github = 'https://github.com/LibCrowds/libcrowds'
// Additional footer menu
// config.footer = {
// title: 'Newsletter',
// items: [
// { text: 'Sign up', url: 'http://mailchimp.signup.url' }
// ]
// }
// Sentry public DSN
// config.sentry = {
// public_key: '',
// private_key: '',
// project_id: ''
// }
// Google analytics tracking ID
// config.analytics = {
// ua: 'UA-XXX-X'
// }
// Documentation URI
// config.docs = 'https://docs.example.com'
// Facebook app ID
// config.facebook: {
// appId: ''
// }
// Flarum forum configuration
// config.flarum = {
// url: 'http://community.example.com',
// sessionCookieDomain: '.example.com',
// apiKey: '',
// salt: 'super-secret-string'
// }
// Disable project building functions for non-admin users
// config.disableProjectBuilder = true
module.exports = config