Go to file
Timothy Kim 10407415f0 Add .env files to gitignore and update README with setup instructions
- Add .env.dev and .env.prod to .gitignore
- Document environment variable configuration in README
- Include instructions for generating secure keys

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-19 20:40:00 -05:00
2026-01-19 20:15:12 -05:00
2026-01-19 20:12:50 -05:00
2026-01-19 20:12:50 -05:00
2026-01-19 20:38:09 -05:00
2026-01-19 20:12:50 -05:00
2026-01-19 20:06:47 -05:00

Kebuu

A spending tracker web application built with Flask.

Setup

1. Install Dependencies

cd src
pip install -r requirements.txt

2. Create Environment Files

Copy the example file and configure for your environment:

cp .env.example .env.dev   # For development
cp .env.example .env.prod  # For production

Edit the files with your values:

Variable Description Example
SECRET_KEY Flask session secret (use a strong random string in production) your-secret-key-here
DATABASE_URL Database connection string sqlite:///kebuu.db or postgresql://user:pass@host/db
ALTCHA_HMAC_KEY CAPTCHA signing key (use a strong random string) your-altcha-hmac-key-here

Generate secure keys with:

python -c "import secrets; print(secrets.token_hex(32))"

3. Run the Application

Development:

cd src
python app.py

Production (Docker):

docker build -t kebuu .
docker run -p 5000:5000 --env-file .env.prod kebuu

Project Structure

See CLAUDE.md for detailed project documentation.

Description
Spending Tracker
Readme MIT 44 KiB
Languages
Python 58%
HTML 23.1%
CSS 14.5%
Dockerfile 4.4%