forked from LibCrowds/libcrowds-frontend-settings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
29 lines (28 loc) · 1.27 KB
/
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
const isDev = process.env.NODE_ENV === 'development'
module.exports = {
brand: 'In the spotlight',
tagline: 'Bring past performances from the British Library’s historic playbills collection to life.',
description: 'Help rediscover popular entertainment from the past 400 years by transcribing names and performances on the playbills of Britain’s old theatres.',
company: 'The British Library',
contact: {
twitter: 'LibCrowds',
email: 'crowdsourcing@bl.uk'
},
githubUrl: 'https://github.com/LibCrowds',
pybossaHost: isDev ? 'http://127.0.0.1:5000' : 'https://playbills-backend.libcrowds.com',
dataLicense: {
name: 'CC0',
url: 'https://creativecommons.org/publicdomain/zero/1.0/'
},
mapboxApiToken: 'pk.eyJ1IjoibGliY3Jvd2RzIiwiYSI6ImNpdmlxaHFzNTAwN3YydHBncHV3dHc3aXgifQ.V4WUx9SDcU_XLFJo2M3RxQ',
mapboxId: 'mapbox.streets',
forumUrl: 'http://community.libcrowds.com',
bgImg: require('@/custom/site-settings-playbills/background.jpg'),
aboutMd: require('@/custom/site-settings-playbills/about.md'),
technologyMd: require('@/custom/site-settings-playbills/technology.md'),
projectsMd: require('@/custom/site-settings-playbills/projects.md'),
footer: {
text: 'Part of the LibCrowds crowdsourcing platform',
url: 'http://www.libcrowds.com'
}
}