{"id":15055429,"url":"https://github.com/ludwigandreas/gitparse","last_synced_at":"2026-01-19T09:01:23.635Z","repository":{"id":250879697,"uuid":"835728276","full_name":"LudwigAndreas/GitParse","owner":"LudwigAndreas","description":"Full-Stack application admin panel for Git repositories (github and gitlab) to display commit stats tables and charts","archived":false,"fork":false,"pushed_at":"2024-08-07T11:47:55.000Z","size":2693,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-07T01:34:52.765Z","etag":null,"topics":["git-api","github","gitlab","java","oauth2-client","postgresql","react","spring-boot","spring-security-oauth2","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/LudwigAndreas.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}},"created_at":"2024-07-30T12:16:52.000Z","updated_at":"2024-08-07T12:06:22.000Z","dependencies_parsed_at":"2024-10-12T18:03:39.909Z","dependency_job_id":"ffbfe2df-3896-4ddf-a792-c5b4a8555f8a","html_url":"https://github.com/LudwigAndreas/GitParse","commit_stats":null,"previous_names":["ludwigandreas/gitparse"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/LudwigAndreas/GitParse","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LudwigAndreas%2FGitParse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LudwigAndreas%2FGitParse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LudwigAndreas%2FGitParse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LudwigAndreas%2FGitParse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LudwigAndreas","download_url":"https://codeload.github.com/LudwigAndreas/GitParse/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LudwigAndreas%2FGitParse/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28565001,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T08:53:44.001Z","status":"ssl_error","status_checked_at":"2026-01-19T08:52:40.245Z","response_time":67,"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":["git-api","github","gitlab","java","oauth2-client","postgresql","react","spring-boot","spring-security-oauth2","typescript"],"created_at":"2024-09-24T21:42:04.342Z","updated_at":"2026-01-19T09:01:23.615Z","avatar_url":"https://github.com/LudwigAndreas.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Git Unified Admin Panel\n\n🚧 Project Status: In Progress 🚧\n\n**Note**: This project is currently under development. Not all features have been implemented yet. Please refer to the Features section for details on what has been completed and what is still in progress.\n\n## Overview\n\nThe project is a web application that provides an administrative panel for managing users and tasks on Github and Gitlab platforms, as well for monitoring commit statistics. The application is divided into frontend and backend parts and is implemented in Java using a microservice architecture.\n\n## Features\n\n- [x] Implementation of extensible application backend architecture\n- [x] Unification of gitlab and github api\n- [x] Adding OAuth2 authentication for access to github and gitlab\n- [ ] Saving statistics to database\n- [x] Add ability to view statistics as a table\n- [ ] Add ability to view statistics as a chart\n- [ ] Adding sorting, filtering, pagination for queries\n\n## Architecture\n\n### Components\n\n- [ ] **Frontend** - Vite, ReactJS Frontend application\n- [ ] **Backend** - Java Spring Boot application that contains business logic\n## Getting Started\n\n### Prerequisites\n\n- **Docker**: Containerization\n- **Docker Compose**: Deployment\n\n### Installation\n\n1. Clone the repository\n\n   ```sh\n   git clone https://github.com/LudwigAndreas/GitParse.git\n   ```\n\n2. Change directory\n\n   ```sh\n    cd GitParse\n    ```\n\n3. Build the Docker images\n\n   ```sh\n   docker-compose build\n   ```\n\n4. Start the services\n\n   ```sh\n    docker-compose up\n    ```\n\n## Services\n\n### Backend\n\nBackend application is used for api unification, saving to database and storing user data. Backend implemented as monolithic service. The architecture was chosen because of the time to develop an MVP.\n\nBackend service can be accessed at [http://localhost:8080](http://localhost:8080)\n\n### Frontend\n\nThe frontend is developed on ReactJS, Vite, Tailwind, Shadcn, Radix-ui stack. It allows you to get data representation in the form of tables and charts. For the most part, shadcn components were used for visualization.\n\nFrontend service can be accessed at [http://localhost:3000](http://localhost:3000)\n\n## Configuration\n\n### Environment Variables\n\nThe services are configured using environment variables. The environment variables are defined in the `.env` file.\n\n```env\n# Backend\nAPI_URL = http://localhost:8080\n\n\n```\n\n## Deployment\n\n### Docker Compose\n\nThe application is containerized using Docker and deployed using Docker Compose. The services are defined in the `docker-compose.yml` file.\n\n```sh\ndocker-compose up\n```\n\n## Usage\n\nExamples of how to use the API endpoints described in the `docs` directory. (**Not implemented yet**)\n\n### Authentication\n\n(**Not implemented yet**)\n\n### API Requests\n\nDocumentation for the API endpoints can be found in the `docs` directory. (**Not implemented yet**)\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fludwigandreas%2Fgitparse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fludwigandreas%2Fgitparse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fludwigandreas%2Fgitparse/lists"}