{"id":34774157,"url":"https://github.com/codeformuenster/muenster-dashboard","last_synced_at":"2025-12-25T08:11:46.332Z","repository":{"id":1145432,"uuid":"110239760","full_name":"codeformuenster/muenster-dashboard","owner":"codeformuenster","description":"Eine \"Stadtviertel-App\", zeigt Infos aus Deiner Umgebung an, aus Open Data Datensätzen der Stadt Münster.","archived":false,"fork":false,"pushed_at":"2023-01-05T01:32:55.000Z","size":4689,"stargazers_count":7,"open_issues_count":41,"forks_count":4,"subscribers_count":7,"default_branch":"master","last_synced_at":"2024-06-11T17:25:27.856Z","etag":null,"topics":["elasticsearch","open-data","react"],"latest_commit_sha":null,"homepage":"https://mein-ms.de/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codeformuenster.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-11-10T11:27:06.000Z","updated_at":"2023-03-05T10:16:11.000Z","dependencies_parsed_at":"2023-01-11T15:49:49.533Z","dependency_job_id":null,"html_url":"https://github.com/codeformuenster/muenster-dashboard","commit_stats":null,"previous_names":[],"tags_count":22,"template":false,"template_full_name":null,"purl":"pkg:github/codeformuenster/muenster-dashboard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeformuenster%2Fmuenster-dashboard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeformuenster%2Fmuenster-dashboard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeformuenster%2Fmuenster-dashboard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeformuenster%2Fmuenster-dashboard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codeformuenster","download_url":"https://codeload.github.com/codeformuenster/muenster-dashboard/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeformuenster%2Fmuenster-dashboard/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28024345,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-25T02:00:05.988Z","response_time":58,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["elasticsearch","open-data","react"],"created_at":"2025-12-25T08:11:45.532Z","updated_at":"2025-12-25T08:11:46.326Z","avatar_url":"https://github.com/codeformuenster.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fcodeformuenster%2Fmuenster-dashboard.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fcodeformuenster%2Fmuenster-dashboard?ref=badge_shield)\n\n## Run development environment locally\n\n```bash\nexport COMPOSE_PROJECT_NAME=\"muenster-dashboard\"\nexport ELASTICSEARCH_URL_PREFIX=\"http://localhost:9200/mein-ms2-\"\nexport BUILD=\"--build\"\n\nsudo --preserve-env docker-compose up $BUILD\n```\n\nIf you want to start React in developer mode open another terminal:\n\n```bash\nsudo docker container stop muenster-dashboard_dashboard_1\nexport REACT_APP_ELASTICSEARCH_URL_PREFIX=\"http://localhost:9200/mein-ms2-\"\nnpm start\n```\n## Debugging\n\nIf \"npm start\" fails because of this error:\n\n    Error: ENOSPC: System limit for number of file watchers reached, watch '/home/thomas/git/familien-dashboard/public'\n\nThen you should try:\n```bash\necho fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf \u0026\u0026 sudo sysctl -p\n```\n\n## Debug kibana index content\n\n* Show indexes: https://elasticsearch.codeformuenster.org/mein-ms-places/_cat/indices\n* Show content of mein-ms-places index: https://elasticsearch.codeformuenster.org/mein-ms-places/_search\n* Show only events: https://elasticsearch.codeformuenster.org/mein-ms-places/_search?q=type:event\n\nFor offline debugging, exchange `elasticsearch.codeformuenster.org` with `localhost:9200`.\n\n### Delete and recreate an index\n\nIf you need to delete an index:\n\n    curl -XDELETE localhost:9200/places\n\nBefore importing it, don't forget to run the index creation script, otherwise the locations will not be recognized by Elasticsearch.\n\n    node create_indexes.js\n\ncareful, this ^ also deletes indexes. uncomment the indexes you dont want to recreate.\n\n## Data import\n\nFor importing the data open a new terminal:\n\nIf you don't provide a mapquest key, *no events will be imported*.\nGet a mapquest key here (registration is quick and easy): https://developer.mapquest.com/user/me/apps\n\n```bash\nexport COMPOSE_PROJECT_NAME=\"muenster-dashboard\"\nexport ELASTICSEARCH_URL_PREFIX=\"http://elasticsearch:9200/mein-ms2-\"\nexport BUILD=\"--build\"\nexport MAPQUEST_KEY=\"\u003cyour mapquest key here\u003e\"\n\ncd import-scripts\nsudo --preserve-env ./import.sh\n```\n\nRead more about importing mein-ms data in [import-scripts/README.md](import-scripts/README.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeformuenster%2Fmuenster-dashboard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodeformuenster%2Fmuenster-dashboard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeformuenster%2Fmuenster-dashboard/lists"}