Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imigueldiaz/commit-tracker
A Flask web application for documenting and organizing Git commits with branch management, file attachments, and Markdown support.
https://github.com/imigueldiaz/commit-tracker
branch-management commit-management dark-theme flask git-tools python vstfs-tools
Last synced: about 1 month ago
JSON representation
A Flask web application for documenting and organizing Git commits with branch management, file attachments, and Markdown support.
- Host: GitHub
- URL: https://github.com/imigueldiaz/commit-tracker
- Owner: imigueldiaz
- License: mit
- Created: 2024-11-10T10:18:50.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-11-10T10:31:06.000Z (about 1 month ago)
- Last Synced: 2024-11-10T11:25:51.382Z (about 1 month ago)
- Topics: branch-management, commit-management, dark-theme, flask, git-tools, python, vstfs-tools
- Language: HTML
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Commit Tracker
A powerful web application for tracking and managing software development commits across different branches with advanced dependency and transition features.
## 🚀 Features
### Branch Management
- **Branch Flow Visualization**: Interactive diagram showing branch relationships and dependencies
- **Commit Counter**: Visual indicators showing number of commits per branch
- **Tooltips**: Hover over branches to see detailed commit information
- **Branch Dependencies**: Define and validate branch relationships
- **Independent Branches**: Support for branches outside the main flow
- **Branch Ordering**: Customizable branch order for deployment flows### Commit Management
- **VSTFS Integration**: Track Visual Studio Team Foundation Server commits
- **JIRA Integration**: Link commits to JIRA tickets
- **Markdown Support**: Rich text formatting for commit descriptions
- **File Attachments**: Support for multiple file attachments per commit
- **Smart File Handling**:
- Automatic file attachment for images
- Intelligent paste handling based on context
- Support for drag & drop### Commit Transitions
- **Branch Transitions**: Move commits between branches
- **Transition History**: Track all commit movements
- **Dependency Validation**: Prevent invalid transitions
- **Recent Activity**: View recent commit transitions### UI/UX
- **Dark Theme**: Modern dark theme design
- **Responsive Layout**: Works on desktop and mobile
- **Interactive Diagrams**: Using Mermaid.js for flow visualization
- **Bootstrap 5**: Modern and responsive design
- **FontAwesome Icons**: Clear visual indicators## 🛠 Technical Stack
- **Backend**: Python/Flask
- **Database**: SQLAlchemy ORM
- **Frontend**:
- Bootstrap 5
- JavaScript
- Mermaid.js
- **Features**:
- Markdown rendering
- File upload/download
- Dynamic tooltips
- Interactive diagrams## 🔧 Installation
1. Clone the repository:
```bash
git clone https://github.com/yourusername/commit-tracker.git
cd commit-tracker
```
2. Create and activate virtual environment:
```bash
python -m venv venv
source venv/bin/activate # Linux/Mac
venv\Scripts\activate # Windows
```3. Install dependencies:
```bash
pip install -r requirements.txt
```
4. Initialize the database:
```bash
flask db init
flask db migrate
flask db upgrade
```
5. Run the application:
```bash
flask run
```
## 💡 Usage### Branch Setup
1. Create branches with appropriate order and dependencies
2. Define independent branches for hotfixes or parallel development
3. Customize branch colors for visual distinction### Commit Management
1. Create commits with VSTFS numbers and optional JIRA tickets
2. Add detailed descriptions using Markdown
3. Attach relevant files (images, documents, etc.)
4. Move commits between branches following defined flows### Viewing and Reporting
1. View branch flow diagram
2. Track commit transitions
3. Monitor branch dependencies
4. View commit details and attachments## 🔒 Security Features
- Attachment ownership validation
- Branch transition validation
- Input sanitization
- Error handling and logging## 🐳 Docker Setup
The application can be run using Docker Compose, which sets up the Flask application with SQLite database support.
### Prerequisites
- Docker
- Docker Compose### Running with Docker Compose
1. Build and start the container:
```bash
docker-compose up --build
```2. Initialize the database (first time only):
```bash
docker-compose exec web flask db upgrade
```3. Access the application at http://localhost:5000
### Development with Docker
When developing with Docker, you can use the following commands to interact with the application:
1. Running Flask Commands:
```bash
# Create database migrations
docker-compose exec web flask db migrate -m "migration message"# Apply migrations
docker-compose exec web flask db upgrade# Access Flask shell
docker-compose exec web flask shell
```2. Running Python Scripts:
```bash
# Import data
docker-compose exec web python import_data.py# Export data
docker-compose exec web python export_data.py
```3. Development Workflow:
- Code changes are automatically reflected in the container thanks to volume mounting
- After making changes to Python files, restart the container:
```bash
docker-compose restart web
```
- For database schema changes:
1. Modify models in `app/models.py`
2. Create migration: `docker-compose exec web flask db migrate -m "change description"`
3. Apply migration: `docker-compose exec web flask db upgrade`### Stopping the Application
To stop the application:
```bash
docker-compose down
```Note: The SQLite database file is stored in the `instance` directory, which is persisted through Docker volumes.
## 🤝 Contributing
Contributions are welcome! Please feel free to submit pull requests.## 📝 License
This project is licensed under the MIT License - see the LICENSE file for details.## 🙏 Acknowledgments
- Flask team for the excellent web framework
- Mermaid.js for flow visualization
- Bootstrap team for the UI framework