{"id":36700735,"url":"https://github.com/fuks-kit/app_services","last_synced_at":"2026-01-12T11:37:58.894Z","repository":{"id":200332252,"uuid":"705288706","full_name":"fuks-kit/app_services","owner":"fuks-kit","description":"This repository contains gRPC services for the fuks App","archived":false,"fork":false,"pushed_at":"2024-06-17T15:59:08.000Z","size":98,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-11-16T03:40:38.455Z","etag":null,"topics":["cloud-native","go","grpc","microservice"],"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/fuks-kit.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"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":"2023-10-15T15:47:46.000Z","updated_at":"2024-06-17T15:55:32.000Z","dependencies_parsed_at":"2024-06-21T05:34:37.300Z","dependency_job_id":"073adb2c-fceb-4303-ac3c-6850cea2cf04","html_url":"https://github.com/fuks-kit/app_services","commit_stats":{"total_commits":83,"total_committers":2,"mean_commits":41.5,"dds":"0.012048192771084376","last_synced_commit":"acd57453f8a7afc8f4c2c67a71f8805cc612c5d8"},"previous_names":["fuks-kit/cloud_services"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/fuks-kit/app_services","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fuks-kit%2Fapp_services","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fuks-kit%2Fapp_services/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fuks-kit%2Fapp_services/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fuks-kit%2Fapp_services/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fuks-kit","download_url":"https://codeload.github.com/fuks-kit/app_services/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fuks-kit%2Fapp_services/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28338971,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T10:58:46.209Z","status":"ssl_error","status_checked_at":"2026-01-12T10:58:42.742Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["cloud-native","go","grpc","microservice"],"created_at":"2026-01-12T11:37:58.824Z","updated_at":"2026-01-12T11:37:58.888Z","avatar_url":"https://github.com/fuks-kit.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cloud Services\n\nThis repository contains gRPC services for the fuks App\n\n## Command Line Interface\n\nTo kickstart your journey with these services, you can use the following commands:\n\n### Start the Server\n\nTo initiate the server, set your Google Application Credentials using `credentials.json` and execute:\n\n```bash\nexport GOOGLE_APPLICATION_CREDENTIALS=credentials.json\ngo run cmd/server/server.go\n```\n\n### Start the Client\n\nLaunch the client with one of the following commands:\n\n```bash\ngo run cmd/cli/cli.go get_events\ngo run cmd/cli/cli.go get_projects\ngo run cmd/cli/cli.go get_karlsruher_transfers\ngo run cmd/cli/cli.go get_links\n```\n\n## Deploy a new release\n\nPrepare a new release by following these steps:\n\n1. Update the changelog in `CHANGELOG.md`\n2. Update dependencies `go get -u all`\n3. Commit changes `git commit -am \"Release vX.X.X\"`\n4. Push changes `git push`\n5. Create a new git tag:\n    1. `git tag vX.X.X`\n    2. `git push origin vX.X.X`\n6. Merge `main` branch into `stable` branch\n\nAfter the release is merged into the `stable` branch, the new release will be automatically deployed by using Google\nCloud Run.\n\n## Generate gRPC Definitions\n\n### Dependencies\n\nBefore you begin, make sure you have the following dependencies installed:\n\n- Protocol Buffers: Install with Homebrew (macOS) or your preferred package manager.\n   ```bash\n   brew install protobuf\n   ```\n\n- Go Protobuf and gRPC code generation tools:\n   ```bash\n   go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest\n   go install google.golang.org/protobuf/cmd/protoc-gen-go@latest\n   ```\n\n### Generate Code\n\nTo generate gRPC definitions, follow these steps:\n\n1. Update APP_DIR Variable\n    - In the `proto/Makefile`, update the `APP_DIR` variable to point to the Fuks App directory.\n\n2. Update PROTO_ROOT_DIR Variable\n    - If necessary, modify the `PROTO_ROOT_DIR` variable in the `proto/Makefile` to suit your setup.\n\n3. Update gRPC Definitions\n    - Make changes to the gRPC definitions in `proto/services.proto` as needed.\n\n4. Generate Code\n    - Use the following commands to generate the code:\n        - Generate Go code:\n          ```bash\n          make go\n          ```\n        - Generate Fuks App code:\n          ```bash\n          make dart\n          ```\n\nThese guidelines should help you make the most out of the Fuks Cloud Services repository. Enjoy your journey!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffuks-kit%2Fapp_services","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffuks-kit%2Fapp_services","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffuks-kit%2Fapp_services/lists"}