mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-08 03:18:36 +03:00
* Fix README; add missing dev dependency * Fix validators to filter out bad events and sources * Better defaults in config
28 lines
667 B
JavaScript
28 lines
667 B
JavaScript
module.exports = {
|
|
title: 'example',
|
|
display_title: 'example',
|
|
SERVER_ROOT: 'http://localhost:4040',
|
|
EVENTS_EXT: '/api/timemap_data/export_events/deeprows',
|
|
ASSOCIATIONS_EXT: '/api/timemap_data/export_associations/deeprows',
|
|
SOURCES_EXT: '/api/timemap_data/export_sources/deepids',
|
|
SITES_EXT: '',
|
|
SHAPES_EXT: '',
|
|
DATE_FMT: 'MM/DD/YYYY',
|
|
TIME_FMT: 'hh:mm',
|
|
store: {
|
|
app: {
|
|
map: {
|
|
anchor: [31.356397, 34.784818]
|
|
}
|
|
},
|
|
features: {
|
|
COLOR_BY_ASSOCIATION: true,
|
|
USE_ASSOCIATIONS: true,
|
|
USE_SOURCES: true,
|
|
USE_COVER: false,
|
|
GRAPH_NONLOCATED: false,
|
|
HIGHLIGHT_GROUPS: false
|
|
}
|
|
}
|
|
}
|