{"id":31557254,"url":"https://github.com/starichkov/golang-simple-notes","last_synced_at":"2026-04-13T09:31:52.798Z","repository":{"id":293472337,"uuid":"984130211","full_name":"starichkov/golang-simple-notes","owner":"starichkov","description":"Simple notes app written in Go, with assitance from several AI coding agents to evaulate their capabilities - Cursor and JetBrains Junie","archived":false,"fork":false,"pushed_at":"2026-01-17T14:33:22.000Z","size":142,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-17T23:56:16.030Z","etag":null,"topics":["couchdb","database-agnostic","go","golang","grpc","grpc-go","mongodb","rest-api"],"latest_commit_sha":null,"homepage":"","language":"Go","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/starichkov.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["starichkov"],"ko_fi":"starichkov","buy_me_a_coffee":"starichkov"}},"created_at":"2025-05-15T12:49:52.000Z","updated_at":"2026-01-17T14:33:25.000Z","dependencies_parsed_at":"2025-06-02T11:27:03.909Z","dependency_job_id":"d7862aa4-7ed9-428a-8bd5-8096df255a98","html_url":"https://github.com/starichkov/golang-simple-notes","commit_stats":null,"previous_names":["starichkov/golang-simple-notes"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/starichkov/golang-simple-notes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starichkov%2Fgolang-simple-notes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starichkov%2Fgolang-simple-notes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starichkov%2Fgolang-simple-notes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starichkov%2Fgolang-simple-notes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/starichkov","download_url":"https://codeload.github.com/starichkov/golang-simple-notes/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starichkov%2Fgolang-simple-notes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31746294,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T09:16:15.125Z","status":"ssl_error","status_checked_at":"2026-04-13T09:16:05.023Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["couchdb","database-agnostic","go","golang","grpc","grpc-go","mongodb","rest-api"],"created_at":"2025-10-04T23:53:36.445Z","updated_at":"2026-04-13T09:31:52.792Z","avatar_url":"https://github.com/starichkov.png","language":"Go","funding_links":["https://github.com/sponsors/starichkov","https://ko-fi.com/starichkov","https://buymeacoffee.com/starichkov"],"categories":[],"sub_categories":[],"readme":"# Notes API: Golang with NoSQL Databases\n\n[![Author](https://img.shields.io/badge/Author-Vadim%20Starichkov-blue?style=for-the-badge)](https://github.com/starichkov)\n![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/starichkov/golang-simple-notes?style=for-the-badge)\n[![GitHub License](https://img.shields.io/github/license/starichkov/golang-simple-notes?style=for-the-badge)](https://github.com/starichkov/golang-simple-notes/blob/main/LICENSE.md)\n[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/starichkov/golang-simple-notes/build.yml?style=for-the-badge)](https://github.com/starichkov/golang-simple-notes/actions/workflows/build.yml)\n[![Codecov](https://img.shields.io/codecov/c/github/starichkov/golang-simple-notes?style=for-the-badge)](https://codecov.io/gh/starichkov/golang-simple-notes)\n\nA simple microservice for notes management with REST and gRPC APIs, supporting multiple storage backends.\n\n*This project is generated using JetBrains Junie and several other AI coding agents to evaluate agent capabilities.*\n\n## 🚀 Features\n\n- **Dual API Support**: Full CRUD operations via both REST and gRPC.\n- **Multiple Storage Backends**:\n    - **In-memory**: Ideal for local development and testing.\n    - **CouchDB**: Support for document-oriented storage with CouchDB.\n    - **MongoDB**: Support for document-oriented storage with MongoDB.\n- **Clean Architecture**: Decoupled domain logic, storage interfaces, and transport layers.\n- **Dockerized**: Easy deployment with Docker and Docker Compose.\n- **Comprehensive Testing**: Unit tests and integration tests using `testcontainers-go`.\n\n## 🛠 Prerequisites\n\n- **Go**: 1.25.6 or later (as specified in `go.mod`).\n- **Docker \u0026 Docker Compose**: Required for running databases and integration tests.\n\n## 📁 Project Structure\n\n```text\n.\n├── grpc/           # gRPC service implementation\n├── model/          # Domain entities (Note)\n├── proto/          # gRPC service definitions (Protocol Buffers)\n├── rest/           # REST API handlers and middleware\n├── storage/        # Storage interface and implementations (Memory, CouchDB, MongoDB)\n├── app.go          # Application wiring and lifecycle management\n├── config.go       # Configuration management via environment variables\n├── Dockerfile      # Docker image definition\n├── docker-compose* # Docker Compose configurations for various setups\n└── main.go         # Application entry point\n```\n\n## 📚 Documentation\n\nFor more detailed information, please refer to the following guides:\n\n- [**Setup \u0026 Running**](RUNNING.md) - How to install, compile, and run the application.\n- [**API Reference**](API.md) - Details about REST and gRPC endpoints.\n- [**Testing**](TESTING.md) - How to run unit and integration tests.\n\n## 🧾 About TemplateTasks\n\nTemplateTasks is a developer-focused initiative by Vadim Starichkov, currently operated as sole proprietorship in Finland.  \nAll code is released under open-source licenses. Ownership may be transferred to a registered business entity in the future.\n\n## 📄 License \u0026 Attribution\n\nThis project is licensed under the **MIT License** — see the [LICENSE](LICENSE.md) file for details.\n\n### Using This Project?\n\nIf you use this code in your own projects, attribution is required under the MIT License:\n\n```\nBased on golang-simple-notes by Vadim Starichkov, TemplateTasks\n\nhttps://github.com/starichkov/golang-simple-notes\n```\n\n**Copyright © 2026 Vadim Starichkov, TemplateTasks**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstarichkov%2Fgolang-simple-notes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstarichkov%2Fgolang-simple-notes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstarichkov%2Fgolang-simple-notes/lists"}