An open API service indexing awesome lists of open source software.

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

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