{"id":22139023,"url":"https://github.com/in-rich/uservice-teams","last_synced_at":"2025-09-03T10:32:59.802Z","repository":{"id":263356133,"uuid":"829593739","full_name":"in-rich/uservice-teams","owner":"in-rich","description":"Manage inrich teams feature.","archived":false,"fork":false,"pushed_at":"2025-02-23T20:37:52.000Z","size":117,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-03-24T10:50:50.096Z","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-16T18:44:23.000Z","updated_at":"2025-02-23T20:37:49.000Z","dependencies_parsed_at":"2025-02-23T21:23:22.022Z","dependency_job_id":"4d4d2172-2bae-47ad-8c97-c2a5cc9ba884","html_url":"https://github.com/in-rich/uservice-teams","commit_stats":null,"previous_names":["in-rich/uservice-teams"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/in-rich/uservice-teams","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/in-rich%2Fuservice-teams","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/in-rich%2Fuservice-teams/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/in-rich%2Fuservice-teams/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/in-rich%2Fuservice-teams/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/in-rich","download_url":"https://codeload.github.com/in-rich/uservice-teams/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/in-rich%2Fuservice-teams/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273430458,"owners_count":25104479,"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-09-03T02:00:09.631Z","response_time":76,"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":["golang","grpc","inrich","server"],"created_at":"2024-12-01T20:13:17.354Z","updated_at":"2025-09-03T10:32:59.758Z","avatar_url":"https://github.com/in-rich.png","language":"Go","readme":"# U-Service Teams\r\n\r\nManage inrich teams feature.\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-teams","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fin-rich%2Fuservice-teams","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fin-rich%2Fuservice-teams/lists"}