diff --git a/.gitignore b/.gitignore
index 1f46137..949bb40 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,3 @@
bower_components/
node_modules/
build/
-.sass-cache/
-config.json
diff --git a/README.md b/README.md
index 44b2191..a9499b7 100644
--- a/README.md
+++ b/README.md
@@ -52,7 +52,7 @@ Use `grunt serve` for development.
# 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
diff --git a/config.json b/config.json
new file mode 100644
index 0000000..647211a
--- /dev/null
+++ b/config.json
@@ -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 HERE",
+ "subdomains": "1234",
+ "maxZoom": 20
+ }
+ },
+ {
+ "name": "OpenStreetMap.HOT",
+ "url": "https://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png",
+ "config": {
+ "maxZoom": 19,
+ "attribution": "© Openstreetmap France | © OpenStreetMap"
+ }
+ },
+ {
+ "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 HERE",
+ "subdomains": "1234",
+ "variant": "hybrid.day",
+ "maxZoom": 20
+ }
+ }
+ ],
+ "fixedCenter": {
+ "lat": 49.01722,
+ "lng": 12.0969,
+ "radius": 45
+ },
+ "siteNames": [
+ {
+ "site": "ffrgb-bat15",
+ "name": "Regensburg"
+ }
+ ]
+}
diff --git a/config.json.example b/config.json.example
deleted file mode 100644
index 868e822..0000000
--- a/config.json.example
+++ /dev/null
@@ -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"
- }
- ]
-}