{"id":22139024,"url":"https://github.com/in-rich/uservice-linkedin-data","last_synced_at":"2026-04-30T17:32:00.448Z","repository":{"id":264411469,"uuid":"827430011","full_name":"in-rich/uservice-linkedin-data","owner":"in-rich","description":"Save and manage data scraped from LinkedIn.","archived":false,"fork":false,"pushed_at":"2025-02-23T20:35:22.000Z","size":83,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-03-24T10:50:50.676Z","etag":null,"topics":["golang","grpc","inrich","server"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/in-rich.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"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-07-11T16:20:14.000Z","updated_at":"2025-02-23T20:35:22.000Z","dependencies_parsed_at":null,"dependency_job_id":"4330f677-888c-4910-be26-119a31237aba","html_url":"https://github.com/in-rich/uservice-linkedin-data","commit_stats":null,"previous_names":["in-rich/uservice-linkedin-data"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/in-rich/uservice-linkedin-data","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/in-rich%2Fuservice-linkedin-data","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/in-rich%2Fuservice-linkedin-data/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/in-rich%2Fuservice-linkedin-data/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/in-rich%2Fuservice-linkedin-data/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/in-rich","download_url":"https://codeload.github.com/in-rich/uservice-linkedin-data/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/in-rich%2Fuservice-linkedin-data/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32472396,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["golang","grpc","inrich","server"],"created_at":"2024-12-01T20:13:17.688Z","updated_at":"2026-04-30T17:32:00.430Z","avatar_url":"https://github.com/in-rich.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# U-Service LinkedIn Data\r\n\r\nSave and manage data scraped from LinkedIn.\r\n\r\n## Requirements\r\n\r\n- Git: Version control system\r\n  - macOS:\r\n    ```bash\r\n    brew install git\r\n    ```\r\n  - Ubuntu:\r\n    ```bash\r\n    sudo apt install git-all\r\n    ```\r\n  - Windows: Try [Git bash](https://git-scm.com/downloads)\r\n- [Go](https://go.dev/doc/install): The main development language\r\n- (Optional, recommended) [direnv](https://direnv.net/docs/installation.html): environment variable manager\r\n- [Docker](https://www.docker.com/products/docker-desktop/): Run the application locally\r\n- (Optional, recommended) Make: Automated scripts for local development\r\n  - macOS:\r\n    ```bash\r\n    brew install make\r\n    ```\r\n  - Ubuntu:\r\n    ```bash\r\n    sudo apt-get install make\r\n    ```\r\n  - Windows: Install [chocolatey](https://chocolatey.org/install) (from a PowerShell with admin privileges), then run:\r\n    ```bash\r\n    choco install make\r\n    ```\r\n- [Mockery](https://github.com/vektra/mockery): Generates mocks for Go interfaces. Requires Go.\r\n  ```bash\r\n  go install github.com/vektra/mockery/v2@v2.43.2\r\n  ```\r\n- [gotestsum](https://github.com/gotestyourself/gotestsum): Pretty test output. Requires Go.\r\n  ```bash\r\n  go install gotest.tools/gotestsum@latest\r\n  ```\r\n- (Optional) [Node.js](https://nodejs.org/en/download/package-manager): Can help install some dependencies. Chose LTS (stable version).\r\n- [Firebase CLI](https://firebase.google.com/docs/cli?hl=fr): used to interact with our Firebase Stack.\r\n  - If you installed Node.js, you can use:\r\n    ```bash\r\n    npm install -g firebase-tools\r\n    ```\r\n\r\n## Installation\r\n\r\nEnsure you have [SSH configured on GitHub](https://docs.github.com/en/authentication/connecting-to-github-with-ssh)\r\nfor your machine.\r\n\r\nMake sure you are using git in SSH mode.\r\n\r\n```bash\r\ngit config --global url.ssh://git@github.com/.insteadOf https://github.com/\r\n```\r\n\r\nEnsure the `GOPRIVATE` variable is set in your local terminal:\r\n\r\n```bash\r\n# You can skip this step if you have direnv configured.\r\nexport GOPRIVATE=github.com/in-rich/*\r\n```\r\n\r\nInstall the project dependencies:\r\n\r\n```bash\r\ngo mod download\r\n```\r\n\r\nMake sure you have access to the [firebase development project](https://console.firebase.google.com/u/0/project/inrich-dev/overview)\r\n(requires a Google account).\r\n\r\nThen, log in to the firebase CLI (select the correct project):\r\n\r\n```bash\r\nfirebase login\r\n```\r\n\r\nCreate a file named `firebase-key.json`, and paste the content of the firebase private access key.\r\n\r\nMake sure Docker is running, and available as a command:\r\n\r\n```bash\r\ndocker ps -a\r\n```\r\n\r\n✅ Congrats, you're ready to go!\r\n\r\nCheck your environment:\r\n\r\n```bash\r\nfirebase use\r\n# Active Project: default (inrich-dev)\r\ngo version\r\n# go version go1.23rc1 darwin/amd64\r\ndocker -v\r\n# Docker version 24.0.7, build afdd53b\r\nmake -v\r\n# GNU Make 3.81\r\necho $GOPRIVATE\r\n# github.com/in-rich/*\r\n```\r\n\r\n## Usage\r\n\r\nRun the server:\r\n\r\n```bash\r\nmake run\r\n```\r\n\r\nRun tests:\r\n\r\n```bash\r\nmake test\r\n```\r\n\r\n## For Windows Users\r\n\r\nWe recommend using a bash terminal emulator. One such example is [Git bash](https://git-scm.com/downloads).\r\n\r\nYou may also use [WSL](https://learn.microsoft.com/en-us/windows/wsl/install).\r\n\r\nIn both cases, make sure the dependencies you install are available under your bash\r\nenvironment. This is automatic for Git Bash, but might require a separate setup\r\nfor WSL.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fin-rich%2Fuservice-linkedin-data","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fin-rich%2Fuservice-linkedin-data","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fin-rich%2Fuservice-linkedin-data/lists"}