ArchontisKostis / CodeInspector

A software quality analysis tool based on hotspot prioritization and commits

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CodeInspector

πŸ” A software quality analysis tool based on hotspot prioritization and commits πŸ› οΈ

Made with:
REACT FASTAPI DOCKER

πŸš€ Overview

CodeInspector is a full-stack application that provides software quality analysis based on hotspot prioritization and commits. It takes a repository URL and generates insights on modified files, file churn, complexity, and priority for quality improvement, as well as insights on the commits. It provides endpoints to prioritize hotspots and analyze commits within a specified date range.

The application consists of two main components:

  • The backend: A FastAPI-based REST API that handles the analysis and provides the necessary endpoints.
  • The frontend: A React-based user interface that allows users to interact with the analysis results.

🐳 Using Docker

CodeInspector provides a Docker configuration for easy deployment. Make sure you have Docker installed on your system before proceeding.

  1. Clone the repository:
    git clone https://github.com/ArchontisKostis/CodeInspector.git
    
  2. Navigate to the project directory:
    cd CodeInspector
    
  3. Build the Docker containers:
    docker-compose up -d --build
    
  4. The backend and frontend containers will be built and started. You can access the web-app by visiting http://localhost:3000 in your web browser.

Docker Compose Services Overview

πŸ“Š database Service

The database service in this Docker Compose configuration utilizes the MySQL image. It represents the MySQL database server for the Code Inspector application.

  • Image: mysql:latest
  • Environment Variables:
    • MYSQL_DATABASE: code_inspector_db
    • MYSQL_ROOT_PASSWORD: root
  • Ports: Exposes port 3306 for MySQL connections.
  • Health Check: Verifies MySQL server health using mysqladmin ping.

πŸš€ backend Service

The backend service is responsible for running the Code Inspector backend application.

  • Image: archontisk/codeinspector
  • Environment Variables:
    • DB_URL: MySQL database connection URL (mysql+pymysql://root:root@database:3306/code_inspector_db).
  • Ports: Exposes port 8000 for the backend application.
  • Dependencies: Depends on the database service and starts conditionally after the database service is healthy.

🌐 frontend Service

The frontend service builds and runs the Code Inspector frontend application.

  • Build Context: ./frontend/app
  • Dockerfile: Specifies Dockerfile for building the frontend image.
  • Ports: Exposes port 3000 for the frontend application.
  • Dependencies: Depends on the backend service.

πŸ“ˆ adminer Service

The adminer service includes Adminer, a lightweight database management tool, to facilitate web-based management of the MySQL database.

  • Image: adminer
  • Ports: Exposes port 8080 for Adminer's web interface.
  • Dependencies: Depends on the database service.

Note: Ensure that you have the necessary configuration details (e.g., database credentials) before accessing and interacting with the services. Adjustments may be required based on your specific setup and requirements.

πŸŽ“ Credits

CodeInspector was created by me (Archontis E. Kostis), as part of my bachelor thesis, with the support and guidance of Mr. Alexander Hatzigeorgiou, Vice Rector of Extroversion and International Relations of University of Macedonia and professor at the Department of Applied Informatics. The project was inspired by a shared passion for improving software quality through data-driven and mining software repositories analysis. The development of this tool would not have been possible without the open-source contributions of the FastAPI, Python, React and PyDriller communities. We are grateful for their efforts in making high-quality software accessible to everyone.

University of Macedonia Logo

About

A software quality analysis tool based on hotspot prioritization and commits


Languages

Language:JavaScript 45.6%Language:Python 35.1%Language:CSS 19.0%Language:HTML 0.3%