[BUGFIX] Add config.json to build process
Also provides a uptodate example
This commit is contained in:
parent
8eb3e40405
commit
cfde2ea02b
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,5 +1,3 @@
|
|||||||
bower_components/
|
bower_components/
|
||||||
node_modules/
|
node_modules/
|
||||||
build/
|
build/
|
||||||
.sass-cache/
|
|
||||||
config.json
|
|
||||||
|
@ -52,7 +52,7 @@ Use `grunt serve` for development.
|
|||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
|
|
||||||
Copy `config.json.example` to `build/config.json` and change it to match your community.
|
Change `config.json`to match your community.
|
||||||
|
|
||||||
|
|
||||||
## Customize style
|
## Customize style
|
||||||
|
77
config.json
Normal file
77
config.json
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
{
|
||||||
|
"nodeInfos": [
|
||||||
|
{
|
||||||
|
"name": "Clientstatistik",
|
||||||
|
"href": "https://regensburg.freifunk.net/netz/statistik/node/{NODE_ID}/",
|
||||||
|
"thumbnail": "https://grafana.regensburg.freifunk.net/render/dashboard-solo/db/ffrgb-all-nodes?panelId=1&from=now-7d&var-nodeid={NODE_ID}&var-host={NODE_NAME}&width=650&height=350&theme=light",
|
||||||
|
"caption": "Knoten {NODE_ID} - weiteren Statistiken"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Trafficstatistik",
|
||||||
|
"href": "https://regensburg.freifunk.net/netz/statistik/node/{NODE_ID}/",
|
||||||
|
"thumbnail": "https://grafana.regensburg.freifunk.net/render/dashboard-solo/db/ffrgb-all-nodes?panelId=2&from=now-7d&var-nodeid={NODE_ID}&var-host={NODE_NAME}&width=650&height=350&theme=light",
|
||||||
|
"caption": "Knoten {NODE_ID} - weiteren Statistiken"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"globalInfos": [
|
||||||
|
{
|
||||||
|
"name": "Statistik",
|
||||||
|
"href": "https://regensburg.freifunk.net/netz/statistik/",
|
||||||
|
"thumbnail": "https://grafana.regensburg.freifunk.net/render/dashboard-solo/db/ffrgb-network-wide-stats?panelId=11&from=now-1y&width=600&height=350&theme=light",
|
||||||
|
"caption": "Jahresstatistik - weiteren Statistiken"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"dataPath": "https://regensburg.freifunk.net/data/",
|
||||||
|
"siteName": "Freifunk Regensburg",
|
||||||
|
"mapSigmaScale": 0.5,
|
||||||
|
"showContact": false,
|
||||||
|
"maxAge": 14,
|
||||||
|
"mapLayers": [
|
||||||
|
{
|
||||||
|
"name": "HERE",
|
||||||
|
"url": "https://{s}.base.maps.api.here.com/maptile/2.1/maptile/newest/normal.day/{z}/{x}/{y}/256/png8?app_id=Q40ik5rnMQOpOQ6RrHCr&app_code=kIPJpCtUZMTiQQJiCemX6Q&lg=deu",
|
||||||
|
"config": {
|
||||||
|
"attribution": "Map © 1987-2014 <a href=\"http://developer.here.com\">HERE</a>",
|
||||||
|
"subdomains": "1234",
|
||||||
|
"maxZoom": 20
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "OpenStreetMap.HOT",
|
||||||
|
"url": "https://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png",
|
||||||
|
"config": {
|
||||||
|
"maxZoom": 19,
|
||||||
|
"attribution": "© Openstreetmap France | © <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Esri.WorldImagery",
|
||||||
|
"url": "//server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}",
|
||||||
|
"config": {
|
||||||
|
"maxZoom": 20,
|
||||||
|
"attribution": "Tiles © Esri — Source: Esri, i-cubed, USDA, USGS, AEX, GeoEye, Getmapping, Aerogrid, IGN, IGP, UPR-EGP, and the GIS User Community"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "HERE.hybridDay",
|
||||||
|
"url": "https://{s}.aerial.maps.api.here.com/maptile/2.1/maptile/newest/{variant}/{z}/{x}/{y}/256/png8?app_id=Q40ik5rnMQOpOQ6RrHCr&app_code=kIPJpCtUZMTiQQJiCemX6Q&lg=deu",
|
||||||
|
"config": {
|
||||||
|
"attribution": "Map © 1987-2014 <a href=\"http://developer.here.com\">HERE</a>",
|
||||||
|
"subdomains": "1234",
|
||||||
|
"variant": "hybrid.day",
|
||||||
|
"maxZoom": 20
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"fixedCenter": {
|
||||||
|
"lat": 49.01722,
|
||||||
|
"lng": 12.0969,
|
||||||
|
"radius": 45
|
||||||
|
},
|
||||||
|
"siteNames": [
|
||||||
|
{
|
||||||
|
"site": "ffrgb-bat15",
|
||||||
|
"name": "Regensburg"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -1,34 +0,0 @@
|
|||||||
{
|
|
||||||
"dataPath": "https://map.luebeck.freifunk.net/data/",
|
|
||||||
"siteName": "Freifunk Lübeck",
|
|
||||||
"mapSigmaScale": 0.5,
|
|
||||||
"showContact": true,
|
|
||||||
"maxAge": 14,
|
|
||||||
"mapLayers": [
|
|
||||||
{
|
|
||||||
"name": "OpenStreetMap.HOT",
|
|
||||||
"url": "//{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Esri.WorldImagery"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"siteNames": [
|
|
||||||
{
|
|
||||||
"site": "ffhl",
|
|
||||||
"name": "Lübeck"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"site": "ffeh",
|
|
||||||
"name": "Entenhausen"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"site": "ffgt",
|
|
||||||
"name": "Gothamcity"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"site": "ffal",
|
|
||||||
"name": "Atlantis"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user