https://github.com/pedrox86lopes/home-brew-management
Home Brewers Management Web App
https://github.com/pedrox86lopes/home-brew-management
brewing diy django fermentation homebrew
Last synced: 17 days ago
JSON representation
Home Brewers Management Web App
- Host: GitHub
- URL: https://github.com/pedrox86lopes/home-brew-management
- Owner: pedrox86lopes
- License: mit
- Created: 2025-07-01T09:09:32.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-07-01T09:12:19.000Z (11 months ago)
- Last Synced: 2025-07-01T10:26:11.312Z (11 months ago)
- Topics: brewing, diy, django, fermentation, homebrew
- Language: HTML
- Homepage:
- Size: 104 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HomeBrew Management System
A complete Django-based brewing management system designed for BIAB (Brew-In-A-Bag) home brewing with AI-powered recipe generation.
## Features
- **AI Recipe Generator** - Generate perfect recipes for any batch size using Claude AI or smart formulas
- **๐ Recipe Management** - Create, edit, clone, and scale brewing recipes
- **๐งช Brewing Lab** - Track active brewing sessions with timers and readings
- **๐ฆ Inventory Management** - Track ingredients, costs, and generate shopping lists
- **๐ Analytics** - Monitor brewing performance and efficiency trends
- **๐ฏ BIAB Optimized** - Strike water calculations, grain absorption, and BIAB-specific workflows
## Quick Start
### Prerequisites
- Python 3.8+
- Django 5.2+
- Virtual environment (recommended)
### Installation
```bash
# Clone the repository
git clone
cd homebrew-management
# Create virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt
# Setup database
python manage.py makemigrations
python manage.py migrate
# Create superuser
python manage.py createsuperuser
# Run server
python manage.py runserver