{"id":26299243,"url":"https://github.com/flohoss/godash","last_synced_at":"2026-06-22T09:32:24.444Z","repository":{"id":280564065,"uuid":"942291766","full_name":"flohoss/godash","owner":"flohoss","description":"A simple, customizable dashboard written in Go. It provides an overview of weather information, system status, and bookmarks with icons and links.","archived":false,"fork":false,"pushed_at":"2026-04-02T09:16:55.000Z","size":8676,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-03T00:18:21.075Z","etag":null,"topics":["bookmarks","dashboard","docker","golang","system","weather"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/flohoss.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-03-03T21:59:27.000Z","updated_at":"2026-04-02T09:16:57.000Z","dependencies_parsed_at":"2025-09-10T22:27:33.200Z","dependency_job_id":"c6767313-33a5-4ba3-85c7-474e41fcbecd","html_url":"https://github.com/flohoss/godash","commit_stats":null,"previous_names":["flohoss/godash"],"tags_count":24,"template":false,"template_full_name":null,"purl":"pkg:github/flohoss/godash","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flohoss%2Fgodash","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flohoss%2Fgodash/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flohoss%2Fgodash/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flohoss%2Fgodash/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flohoss","download_url":"https://codeload.github.com/flohoss/godash/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flohoss%2Fgodash/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34643614,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-22T02:00:06.391Z","response_time":106,"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":["bookmarks","dashboard","docker","golang","system","weather"],"created_at":"2025-03-15T06:47:53.089Z","updated_at":"2026-06-22T09:32:24.439Z","avatar_url":"https://github.com/flohoss.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GoDash\n\ngoDash is a simple, customizable dashboard written in Go. It provides an overview of weather information, system status, and bookmarks with icons and links.\n\n# Table of Contents\n\n- [GoDash](#godash)\n- [Table of Contents](#table-of-contents)\n  - [Features](#features)\n  - [Screenshots](#screenshots)\n    - [Mobile](#mobile)\n    - [Desktop](#desktop)\n  - [Config](#config)\n  - [Docker](#docker)\n    - [run command](#run-command)\n    - [compose file](#compose-file)\n  - [✨ Star History](#-star-history)\n  - [License](#license)\n  - [Contributing](#contributing)\n\n## Features\n\n- Displays current weather\n- Displays weather forcast for up to 6 days\n- Shows system status and resource usage\n- Provides quick access to bookmarks with icons and links\n- Lightweight and easy to deploy with Docker\n\n## Screenshots\n\n\u003cdiv align=\"left\"\u003e\n\n### Mobile\n\n\u003cimg src=\"img/mobile.webp\" width=\"200px\"\u003e\n\n### Desktop\n\n\u003cimg src=\"img/desktop.webp\" width=\"600px\"\u003e\n\u003c/div\u003e\n\n## Config\n\nAt startup, godash will look for a `config.yaml` file in the current directory or create one. If it exists, it will be used to override the default values.\n\nIcons can be stored in a folder called icons or godash will automatically download from [https://selfh.st/icons/](https://selfh.st/icons/) with the prefix `sh/`\n\n```yaml\nlog_level: 'info' # Valid options: debug, info, warn, error\ntime_zone: 'Europe/Berlin' # Must be a valid IANA timezone (e.g., America/New_York, Europe/London)\ntitle: 'My Dashboard' # Any string\n\nserver:\n  address: '0.0.0.0' # Valid IPv4 address, defaults to 0.0.0.0\n  port: 8156 # Optional, must be between 1024 and 65535, defaults to 8156\n\nweather:\n  units: 'celsius' # Valid options: celsius, fahrenheit\n  latitude: 52.5163 # Optional, must be a valid latitude (-90 to 90)\n  longitude: 13.3776 # Optional, must be a valid longitude (-180 to 180)\n\napplications:\n  - category: 'Productivity' # Any string\n    entries:\n      - name: 'Notion' # Any string\n        icon: 'notion.png' # File name or path for icon\n        ignore_dark: false # should not use the light icon even though it exists in dark mode\n        url: 'https://www.notion.so' # Optional, must be a valid URL\n      - name: 'Slack'\n        icon: 'sh/slack.svg' # Use self-hosted icons\n        ignore_dark: true\n        url: 'https://slack.com'\n\n  - category: 'Entertainment'\n    entries:\n      - name: 'YouTube'\n        icon: 'youtube.png'\n        ignore_dark: false\n        url: 'https://www.youtube.com'\n      - name: 'Spotify'\n        icon: 'spotify.png'\n        ignore_dark: false\n        url: 'https://www.spotify.com'\n\nlinks:\n  - category: 'Work'\n    entries:\n      - name: 'GitHub'\n        url: 'https://github.com'\n      - name: 'Jira'\n        url: 'https://jira.com'\n\n  - category: 'Social'\n    entries:\n      - name: 'Twitter'\n        url: 'https://twitter.com'\n      - name: 'LinkedIn'\n        url: 'https://linkedin.com'\n```\n\n## Docker\n\n### run command\n\n```sh\ndocker run -d \\\n  --name godash \\\n  --restart always \\\n  -v ./config:/app/config \\\n  ghcr.io/flohoss/godash:latest\n```\n\n### compose file\n\n```yaml\nservices:\n  godash:\n    restart: always\n    image: ghcr.io/flohoss/godash:latest\n    container_name: godash\n    volumes:\n      - ./config:/app/config\n```\n\n## ✨ Star History\n\n\u003cpicture\u003e\n  \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"https://api.star-history.com/svg?repos=flohoss/godash\u0026type=Date\u0026theme=dark\" /\u003e\n  \u003csource media=\"(prefers-color-scheme: light)\" srcset=\"https://api.star-history.com/svg?repos=flohoss/godash\u0026type=Date\" /\u003e\n  \u003cimg alt=\"Star History Chart\" src=\"https://api.star-history.com/svg?repos=flohoss/godash\u0026type=Date\" /\u003e\n\u003c/picture\u003e\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](https://github.com/flohoss/godash/blob/main/LICENSE) file for details.\n\n## Contributing\n\nFeel free to open issues or submit pull requests to improve goDash!\n\n---\n\n## Development\n\n### Automatic rebuild and reload\n\n```sh\ndocker compose up\n```\n\n### Update Dependencies\n\n```bash\n# Node packages\ndocker compose run --rm yarn install --frozen-lockfile\ndocker compose run --rm yarn upgrade --latest\n\n# Go packages\ndocker compose run --rm go get -u ./...\ndocker compose run --rm go mod tidy\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflohoss%2Fgodash","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflohoss%2Fgodash","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflohoss%2Fgodash/lists"}