{"id":23244622,"url":"https://github.com/ethymoney/gitlab-activity-display","last_synced_at":"2026-04-29T12:31:26.716Z","repository":{"id":268788866,"uuid":"904322461","full_name":"EthyMoney/gitlab-activity-display","owner":"EthyMoney","description":"GitLab activity RSS feed display app. Designed for a Raspberry Pi with a 3.5\" TFT display, but can be easily resized for whatever you have!","archived":false,"fork":false,"pushed_at":"2025-02-06T23:12:12.000Z","size":193,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-06T00:16:26.907Z","etag":null,"topics":["electron","electron-app","feed","gitlab","pi","raspberry-pi","raspberrypi","rss","rss-feed"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/EthyMoney.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}},"created_at":"2024-12-16T17:02:52.000Z","updated_at":"2025-02-06T23:12:16.000Z","dependencies_parsed_at":"2024-12-18T23:28:47.651Z","dependency_job_id":"cc4564c7-3238-4c4a-a80c-ad0fc1e2ed79","html_url":"https://github.com/EthyMoney/gitlab-activity-display","commit_stats":null,"previous_names":["ethymoney/gitlab-activity-display"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EthyMoney%2Fgitlab-activity-display","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EthyMoney%2Fgitlab-activity-display/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EthyMoney%2Fgitlab-activity-display/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EthyMoney%2Fgitlab-activity-display/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EthyMoney","download_url":"https://codeload.github.com/EthyMoney/gitlab-activity-display/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247415967,"owners_count":20935387,"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","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":["electron","electron-app","feed","gitlab","pi","raspberry-pi","raspberrypi","rss","rss-feed"],"created_at":"2024-12-19T07:09:56.364Z","updated_at":"2026-04-29T12:31:26.711Z","avatar_url":"https://github.com/EthyMoney.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gitlab-activity-display\n\nRSS activity feed display app for a Pi and a 3.5\" TFT display.\n\n## Get It\n\n```bash\ngit clone https://github.com/EthyMoney/gitlab-activity-display.git\nsudo chown -R $USER:$USER gitlab-activity-display\ncd gitlab-activity-display\n```\n\n## Build It\n\nSwitch to the branch you want, there's a branch for 3.5\" TFT (main), and 10.1\" 1024x600 on a 32-bit Pi (32-bit-1024x600-version)\n\nFirst, set your feed URL with a valid feed token in `config.json` (copy from `config.json.template`). This gets bundled into the built app, so it needs to be correct before building.\n\n**Important: Never use `sudo` with npm commands as it creates permission issues!**\n\n```bash\n# Copy and configure the config file\ncp config.json.template config.json\n# Edit config.json with your GitLab feed URL and token\n\n# Clean any previous builds (if needed)\nrm -rf package-lock.json node_modules .vite\n\n# Install dependencies\nnpm install\n\n# Install system dependencies for packaging\nsudo apt install rpm -y\n\n# Build the application (choose one based on your target)\nnpm run make        # for current architecture\nnpm run make-pi     # for 64-bit ARM (Pi Zero2/3/4/5)\nnpm run make-pi-32  # for 32-bit ARM (Pi 1/2/Zero)\n```\n\n**If you encounter permission errors:**\n\n```bash\n# Fix ownership if files were created with sudo\nsudo chown -R $USER:$USER .\n# Clean temp directories\nsudo rm -rf /tmp/electron-*\n# Then retry the build\n```\n\n## Install It\n\n```bash\n# Install system dependencies\nsudo apt install trash-cli libglib2.0-bin -y\n\n# Install the built package (adjust architecture as needed)\nsudo dpkg -i out/make/deb/armv7l/gitlab-activity-display_*.deb   # for 32-bit ARM\n# or\nsudo dpkg -i out/make/deb/arm64/gitlab-activity-display_*.deb    # for 64-bit ARM\n# or  \nsudo dpkg -i out/make/deb/x64/gitlab-activity-display_*.deb      # for x64\n```\n\n## Run As Service\n\nSee `service-config.txt` for details on how to run the app as a service.\n\n## Troubleshooting\n\n### Build Issues\n\n**Error: \"main entry point was not found\"**\n\n- This happens when the build process fails or is interrupted\n- Solution: Clean build artifacts and rebuild:\n\n  ```bash\n  rm -rf .vite node_modules package-lock.json\n  npm install\n  npm run make-pi-32  # or your target architecture\n  ```\n\n**Error: \"EACCES: permission denied\"**\n\n- This happens when previous builds were run with `sudo`\n- Solution: Fix ownership and clean temp files:\n\n  ```bash\n  sudo chown -R $USER:$USER .\n  sudo rm -rf /tmp/electron-*\n  rm -rf .vite node_modules\n  npm install\n  ```\n\n**Error: \"failed to load config\"**\n\n- Make sure `config.json` exists (copy from `config.json.template`)\n- Ensure the config file has valid JSON syntax\n\n### Runtime Issues\n\n**App doesn't start or crashes**\n\n- Check that all system dependencies are installed\n- Verify the config.json has a valid GitLab feed URL\n- Check system resources (especially on Pi 2/3/Zero)\n\n## Uninstall It\n\n```bash\nsudo apt remove --purge gitlab-activity-display -y\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fethymoney%2Fgitlab-activity-display","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fethymoney%2Fgitlab-activity-display","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fethymoney%2Fgitlab-activity-display/lists"}