{"id":22139028,"url":"https://github.com/in-rich/uservice-notes","last_synced_at":"2025-03-24T10:41:30.422Z","repository":{"id":258608019,"uuid":"828698651","full_name":"in-rich/uservice-notes","owner":"in-rich","description":"Manage user notes on LinkedIn profile pages.","archived":false,"fork":false,"pushed_at":"2025-02-23T20:35:57.000Z","size":117,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-02-23T21:27:15.410Z","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-14T23:41:22.000Z","updated_at":"2025-02-23T20:35:57.000Z","dependencies_parsed_at":"2025-02-23T21:23:13.550Z","dependency_job_id":"97bdcda7-8745-478b-8279-dc1a62ef64b8","html_url":"https://github.com/in-rich/uservice-notes","commit_stats":null,"previous_names":["in-rich/uservice-notes"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/in-rich%2Fuservice-notes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/in-rich%2Fuservice-notes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/in-rich%2Fuservice-notes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/in-rich%2Fuservice-notes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/in-rich","download_url":"https://codeload.github.com/in-rich/uservice-notes/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245256781,"owners_count":20585968,"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":["golang","grpc","inrich","server"],"created_at":"2024-12-01T20:13:18.124Z","updated_at":"2025-03-24T10:41:30.399Z","avatar_url":"https://github.com/in-rich.png","language":"Go","readme":"# U-Service Notes\r\n\r\nManage user notes on LinkedIn profile pages.\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\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 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\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","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fin-rich%2Fuservice-notes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fin-rich%2Fuservice-notes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fin-rich%2Fuservice-notes/lists"}