{"id":24201542,"url":"https://github.com/mstgnz/starter-kit","last_synced_at":"2026-02-25T20:02:26.178Z","repository":{"id":252576753,"uuid":"840837550","full_name":"mstgnz/starter-kit","owner":"mstgnz","description":"Go project template that provides a well-structured and modular foundation for building Go applications.","archived":false,"fork":false,"pushed_at":"2025-02-28T19:42:19.000Z","size":393,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-14T19:30:13.502Z","etag":null,"topics":["go","htmx","starter-kit","templ"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/mstgnz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"mstgnz"}},"created_at":"2024-08-10T20:53:36.000Z","updated_at":"2025-03-18T18:36:26.000Z","dependencies_parsed_at":"2024-08-10T21:54:40.873Z","dependency_job_id":"95c64df3-e03f-4c0e-b6ff-68b42f52a9be","html_url":"https://github.com/mstgnz/starter-kit","commit_stats":null,"previous_names":["mstgnz/starter-kit"],"tags_count":23,"template":false,"template_full_name":null,"purl":"pkg:github/mstgnz/starter-kit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mstgnz%2Fstarter-kit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mstgnz%2Fstarter-kit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mstgnz%2Fstarter-kit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mstgnz%2Fstarter-kit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mstgnz","download_url":"https://codeload.github.com/mstgnz/starter-kit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mstgnz%2Fstarter-kit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29837449,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T19:08:47.527Z","status":"ssl_error","status_checked_at":"2026-02-25T18:59:04.705Z","response_time":61,"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":["go","htmx","starter-kit","templ"],"created_at":"2025-01-13T21:16:19.137Z","updated_at":"2026-02-25T20:02:26.137Z","avatar_url":"https://github.com/mstgnz.png","language":"TypeScript","funding_links":["https://github.com/sponsors/mstgnz"],"categories":[],"sub_categories":[],"readme":"# Web \u0026 Panel \u0026 API Project\n\nThis project consists of three main components:\n\n- A web application (frontend)\n- An API service (backend)\n- An Angular panel application (admin dashboard)\n\n## Project Structure\n\n```\n/api                 - Backend API service\n    /asset          - API assets including Swagger documentation\n    /cmd            - Application entry point\n    /handler        - HTTP request handlers\n    /internal       - Internal packages (auth, config, connections, etc.)\n    /model          - Data models and entities\n    /pkg            - Reusable packages\n    /service        - Business logic and application services\n    /view           - API documentation views\n\n/web                - Frontend Web application\n    /asset          - Frontend assets (CSS, JS, images)\n    /cmd            - Web application entry point\n    /handler        - HTTP request handlers\n    /model          - Data models\n    /service        - Service packages\n    /view           - Frontend templates and components\n\n/panel              - Angular Admin Dashboard\n    /src            - Source files\n        /app        - Application modules and components\n            /guards      - Authentication and permission guards\n            /interfaces - TypeScript interfaces\n            /layout     - Layout components\n            /modules    - Feature modules\n            /services   - Application services\n            /shared    - Shared modules and components\n```\n\n## Features\n\n### API Service\n\n- Modular and scalable architecture\n- JWT Authentication\n- Database integrations (PostgreSQL, Redis, Kafka)\n- Swagger API documentation\n- Input validation\n- Comprehensive error handling\n- Logging system\n- Email functionality\n- SQL query builder\n- Caching mechanisms\n\n### Web Application\n\n- Modern frontend architecture\n- Localization support\n- Template rendering\n- GraphQL integration\n- CDN support\n- Excel file handling\n- Component-based structure\n- Responsive design\n\n### Angular Panel\n\n- Modern Angular-based admin dashboard\n- Component-based architecture\n- Authentication and authorization\n- Role-based access control\n- Responsive layout system\n- Service integration with API\n- Interceptors for request/response handling\n- TypeScript interfaces for type safety\n- Shared modules and components\n- Guard-protected routes\n\n## Getting Started\n\n1. **Clone the repository**:\n\n   ```bash\n   git clone https://github.com/mstgnz/starter-kit.git\n   ```\n\n2. **Setup API Service**:\n\n   ```bash\n   cd api\n   cp .env.example .env    # Configure your environment variables\n   go mod tidy            # Install dependencies\n   make live              # Run the API service\n   ```\n\n3. **Setup Web Application**:\n\n   ```bash\n   cd web\n   cp .env.example .env    # Configure your environment variables\n   go mod tidy            # Install dependencies\n   make live              # Run the web application\n   ```\n\n4. **Setup Angular Panel**:\n   ```bash\n   cd panel\n   npm install              # Install dependencies\n   npm start               # Run the development server\n   ```\n\n## Configuration\n\nBoth the API and Web components use `.env` files for configuration. Example files (`.env.example`) are provided in each directory. Make sure to configure these properly before running the applications.\n\n## Development\n\n- The API service runs on port specified in the API's `.env` file\n- The Web application runs on port specified in the Web's `.env` file\n- API documentation is available at `/view/swagger.html` in the API service\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmstgnz%2Fstarter-kit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmstgnz%2Fstarter-kit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmstgnz%2Fstarter-kit/lists"}