{"id":34205437,"url":"https://github.com/patricksferraz/pinned-menu","last_synced_at":"2026-04-09T20:05:11.666Z","repository":{"id":292165005,"uuid":"458977601","full_name":"patricksferraz/pinned-menu","owner":"patricksferraz","description":"A high-performance menu management system built with Go, featuring real-time updates, multi-database support, and a modern API architecture. Perfect for restaurants and food service businesses.","archived":false,"fork":false,"pushed_at":"2025-05-08T12:40:02.000Z","size":133,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-17T09:35:51.039Z","etag":null,"topics":["api","backend","clean-architecture","docker","fiber","go","golang","gorm","kafka","kubernetes","menu-management","microservices","open-source","postgresql","rest-api","restaurant-management","sqlite","swagger","web-development"],"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/patricksferraz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2022-02-14T01:24:42.000Z","updated_at":"2025-05-08T12:47:47.000Z","dependencies_parsed_at":"2025-05-08T13:52:25.398Z","dependency_job_id":null,"html_url":"https://github.com/patricksferraz/pinned-menu","commit_stats":null,"previous_names":["patricksferraz/pinned-menu","c-4u/pinned-menu"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/patricksferraz/pinned-menu","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patricksferraz%2Fpinned-menu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patricksferraz%2Fpinned-menu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patricksferraz%2Fpinned-menu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patricksferraz%2Fpinned-menu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/patricksferraz","download_url":"https://codeload.github.com/patricksferraz/pinned-menu/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patricksferraz%2Fpinned-menu/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27756464,"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-12-15T02:00:09.782Z","response_time":96,"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":["api","backend","clean-architecture","docker","fiber","go","golang","gorm","kafka","kubernetes","menu-management","microservices","open-source","postgresql","rest-api","restaurant-management","sqlite","swagger","web-development"],"created_at":"2025-12-15T19:51:25.944Z","updated_at":"2025-12-15T19:51:26.745Z","avatar_url":"https://github.com/patricksferraz.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pinned Menu 🚀\n\n[![Go Report Card](https://goreportcard.com/badge/github.com/patricksferraz/pinned-menu)](https://goreportcard.com/report/github.com/patricksferraz/pinned-menu)\n[![GoDoc](https://godoc.org/github.com/patricksferraz/pinned-menu?status.svg)](https://godoc.org/github.com/patricksferraz/pinned-menu)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\nA modern, high-performance menu management system built with Go, featuring a robust API and scalable architecture.\n\n## ✨ Features\n\n- 🚀 High-performance API built with Fiber\n- 📊 PostgreSQL and SQLite database support\n- 🔄 Real-time updates with Kafka integration\n- 📝 Swagger API documentation\n- 🐳 Docker and Kubernetes support\n- 🔐 Environment-based configuration\n- 🧪 Comprehensive testing suite\n\n## 🛠️ Tech Stack\n\n- **Backend**: Go 1.18+\n- **Web Framework**: Fiber v2\n- **Database**: PostgreSQL, SQLite\n- **ORM**: GORM\n- **Message Broker**: Kafka\n- **Container**: Docker\n- **Orchestration**: Kubernetes\n- **Documentation**: Swagger\n- **Testing**: Go testing framework\n\n## 🚀 Getting Started\n\n### Prerequisites\n\n- Go 1.18 or higher\n- Docker and Docker Compose\n- PostgreSQL (optional, SQLite is available for development)\n- Kafka (optional, for real-time features)\n\n### Installation\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/patricksferraz/pinned-menu.git\ncd pinned-menu\n```\n\n2. Copy the environment file and configure it:\n```bash\ncp .env.example .env\n```\n\n3. Install dependencies:\n```bash\ngo mod download\n```\n\n4. Run the application:\n```bash\nmake run\n```\n\n### Docker Deployment\n\n```bash\ndocker-compose up -d\n```\n\n## 📚 API Documentation\n\nOnce the application is running, you can access the Swagger documentation at:\n```\nhttp://localhost:8080/swagger/\n```\n\n## 🏗️ Project Structure\n\n```\n.\n├── app/          # Application layer\n├── cmd/          # Command line interface\n├── domain/       # Domain models and interfaces\n├── infra/        # Infrastructure implementations\n├── k8s/          # Kubernetes configurations\n└── utils/        # Utility functions\n```\n\n## 🤝 Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## 📝 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## 👥 Authors\n\n- Patrick Ferraz - Initial work - [GitHub](https://github.com/patricksferraz)\n\n## 🙏 Acknowledgments\n\n- [Fiber](https://github.com/gofiber/fiber)\n- [GORM](https://github.com/go-gorm/gorm)\n- [Swagger](https://github.com/swaggo/swag)\n- And all other amazing open-source projects that made this possible!\n\n---\n\n⭐️ If you like this project, please give it a star on GitHub!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatricksferraz%2Fpinned-menu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpatricksferraz%2Fpinned-menu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatricksferraz%2Fpinned-menu/lists"}