{"id":50844032,"url":"https://github.com/subhasundardass/goapp","last_synced_at":"2026-06-14T08:04:39.055Z","repository":{"id":362938304,"uuid":"1260404580","full_name":"subhasundardass/goapp","owner":"subhasundardass","description":"GoApp helps you structure large applications into **independent, plug-and-play modules** while maintaining a simple and predictable core system.","archived":false,"fork":false,"pushed_at":"2026-06-06T15:35:34.000Z","size":462,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-06T17:19:17.740Z","etag":null,"topics":["datastar","entity-framework","fiber-framework","golang","template"],"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/subhasundardass.png","metadata":{"files":{"readme":"README.md","changelog":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-06-05T13:08:39.000Z","updated_at":"2026-06-06T15:35:38.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/subhasundardass/goapp","commit_stats":null,"previous_names":["subhasundardass/goapp"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/subhasundardass/goapp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhasundardass%2Fgoapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhasundardass%2Fgoapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhasundardass%2Fgoapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhasundardass%2Fgoapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/subhasundardass","download_url":"https://codeload.github.com/subhasundardass/goapp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhasundardass%2Fgoapp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34313577,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-14T02:00:07.365Z","response_time":62,"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":["datastar","entity-framework","fiber-framework","golang","template"],"created_at":"2026-06-14T08:04:38.379Z","updated_at":"2026-06-14T08:04:39.050Z","avatar_url":"https://github.com/subhasundardass.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 GoApp\n\nA **modular, scalable Go-based business application framework** designed to build modern web applications with clean architecture, high extensibility, and strong separation of concerns.\n\nGoApp helps you structure large applications into **independent, plug-and-play modules** while maintaining a simple and predictable core system.\n\n---\n\n## ✨ Features\n\n- 🧩 Fully modular architecture (plugin-style system)\n- ⚡ High-performance HTTP server powered by Fiber\n- 🗄️ Database integration using Ent ORM\n- 🔌 Automatic module bootstrap system\n- 📦 Clean architecture: Handler → Service → Repository → DB\n- 🔄 Event-driven communication system (EventBus)\n- ⚙️ Centralized configuration via environment variables\n- 🧠 Scalable core designed for large applications\n- 🔐 Middleware support (logging, CORS, recovery, etc.)\n- 🚀 Built for long-term maintainability and extensibility\n\n---\n\n## 🏗️ Architecture Overview\n\nGoApp follows a **core + modules architecture**:\n\n```\nCore\n├── Application   (Bootstrap layer)\n├── Container     (Dependencies)\n├── Registry      (Module loader)\n├── EventBus      (Communication layer)\n└── HTTP Server   (Fiber)\n\nModules\n├── Handler       (HTTP layer)\n├── Service       (Business logic)\n├── Repository    (Data access layer)\n└── Routes        (API definitions)\n```\n\nEach module is **independent, self-contained, and reusable**.\n\n---\n\n## 📦 Module System\n\nModules in GoApp are designed to be:\n\n- Self-registering\n- Independently testable\n- Isolated from other modules\n- Extensible via services or events\n\n**Example module structure:**\n\n```\n/modules/example\n├── handler/\n├── service/\n├── repository/\n└── module.go\n└── manifest.json\n```\n\n---\n\n## 📁 Project Structure\n\n```\n/core        → Core framework (registry, config, container)\n/modules     → Feature modules (business logic)\n/ent         → ORM generated code\n/internal    → Internal utilities\nmain.go      → Application entry point\n```\n\n---\n\n## ⚙️ Configuration\n\nGoApp uses environment-based configuration:\n\n- `.env` file supported out of the box\n- Central `Config` struct\n- Supports development and production environments\n- Feature toggles for enabling/disabling modules\n\n---\n\n## 🔄 Event System\n\nGoApp includes a lightweight **EventBus system**:\n\n- Publish/Subscribe pattern\n- Decoupled module communication\n- Useful for cross-module workflows\n- Keeps modules fully independent\n\n---\n\n## 🚀 Getting Started\n\n### 1. Clone the repository\n\n```bash\ngit clone https://github.com/subhasundardass/goapp\ncd goapp\n```\n\n### 2. Install dependencies\n\n```bash\ngo mod tidy\n```\n\n### 3. Set up environment\n\n```bash\ncp .env.example .env\n```\n\n### 4. Run the application\n\n```bash\ngo run cmd/web/main.go\nor\nmake dev (hot reload)\n```\n\n---\n\n## 📖 Documentation\n\nFull architecture details, module development guide, and system design explanation are available here:\n\n👉 [DOCUMENTATION.md](./DOCUMENTATION.md)\n\n---\n\n## 🎯 Design Principles\n\nGoApp is built with these principles:\n\n- **Simplicity over complexity** — avoid unnecessary abstractions\n- **Modular independence** — each module stands on its own\n- **Clear separation of concerns** — no logic bleeds between layers\n- **Scalable architecture from day one** — designed to grow\n- **Event-driven communication where needed** — loose coupling via EventBus\n\n---\n\n## 🧠 Ideal Use Cases\n\nGoApp is suitable for building:\n\n- Business applications\n- SaaS platforms\n- Admin dashboards\n- Internal tools\n- API-driven backend systems\n\n---\n\n## 🛣️ Roadmap\n\n- [ ] Module dependency system\n- [ ] Background job processing\n- [ ] Multi-tenant support\n- [ ] Plugin marketplace system\n- [ ] Admin UI panel for module management\n- [ ] Advanced permissions system\n\n---\n\n## 🤝 Contribution\n\nGoApp is designed as a foundation framework, and contributions are welcome in:\n\n- New modules\n- Core enhancements\n- Middleware extensions\n- Event system improvements\n\n---\n\n## 📜 License\n\n[MIT License](./LICENSE)\n\n---\n\n## ⭐ About\n\nGoApp is a modular backend framework designed for building scalable business applications in Go with clean architecture and long-term extensibility in mind.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsubhasundardass%2Fgoapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsubhasundardass%2Fgoapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsubhasundardass%2Fgoapp/lists"}