{"id":29832043,"url":"https://github.com/plexguide/budget101","last_synced_at":"2026-02-07T12:31:33.003Z","repository":{"id":307031993,"uuid":"1027825011","full_name":"plexguide/budget101","owner":"plexguide","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-29T02:34:35.000Z","size":46,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-09T23:12:51.299Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/plexguide.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-28T15:33:36.000Z","updated_at":"2025-08-08T15:17:01.000Z","dependencies_parsed_at":"2025-07-29T04:33:41.789Z","dependency_job_id":"85eda132-b0e5-4f69-8dfc-9be69a0d6170","html_url":"https://github.com/plexguide/budget101","commit_stats":null,"previous_names":["plexguide/budget101"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/plexguide/budget101","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plexguide%2Fbudget101","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plexguide%2Fbudget101/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plexguide%2Fbudget101/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plexguide%2Fbudget101/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/plexguide","download_url":"https://codeload.github.com/plexguide/budget101/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plexguide%2Fbudget101/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29194019,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T07:37:03.739Z","status":"ssl_error","status_checked_at":"2026-02-07T07:37:03.029Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-07-29T11:14:10.000Z","updated_at":"2026-02-07T12:31:32.987Z","avatar_url":"https://github.com/plexguide.png","language":"HTML","readme":"# Budget101 - Personal Budget Management System\n\n![Docker Pulls](https://img.shields.io/docker/pulls/admin9705/budget101)\n![GitHub release](https://img.shields.io/github/v/release/admin9705/budget101)\n![License](https://img.shields.io/github/license/admin9705/budget101)\n\nA comprehensive Flask-based personal budget management application with a dark theme UI inspired by Huntarr. Manage your bills, track taxes, and control your personal finances with ease.\n\n## ✨ Features\n\n- **🏠 Dashboard**: Coming soon - overview of your financial status\n- **💳 Bills Management**: Track bills, due dates, and payment status\n- **📊 Tax Management**: Organize tax information by year\n- **⚙️ Settings**: Customize your experience with user preferences\n- **🔐 Authentication**: Secure user registration and login system\n- **📱 Responsive Design**: Modern, mobile-friendly interface\n- **🐳 Docker Ready**: Easy deployment with Docker\n\n## 🚀 Quick Start\n\n### Docker Deployment (Recommended)\n\n1. **Using Docker Run:**\n```bash\ndocker run -d \\\n  --name budget101 \\\n  --restart unless-stopped \\\n  -p 9715:9715 \\\n  -v ./config:/config \\\n  admin9705/budget101:latest\n```\n\n2. **Using Docker Compose:**\n```yaml\nversion: '3.8'\nservices:\n  budget101:\n    image: admin9705/budget101:latest\n    container_name: budget101\n    restart: unless-stopped\n    ports:\n      - \"9715:9715\"\n    volumes:\n      - ./config:/config\n    environment:\n      - TZ=America/New_York\n```\n\n3. **Access the application:**\n   - Open your browser to `http://localhost:9715`\n   - Create your first admin account\n\n## 🔧 Configuration\n\nBudget101 uses a YAML configuration file located at `/config/config.yml`. Copy the example configuration:\n\n```bash\ncp config/config.yml.example config/config.yml\n```\n\nKey configuration options:\n- **Database settings**: SQLite database path and backup options\n- **Security settings**: Session timeout, login attempts, etc.\n- **Email notifications**: SMTP settings for bill reminders\n- **UI preferences**: Currency, timezone, theme options\n\n## 📋 Requirements\n\n- **Python 3.11+** (for development)\n- **Docker** (for deployment)\n- **Modern web browser**\n\n## 🛠️ Development Setup\n\n1. **Clone the repository:**\n```bash\ngit clone https://github.com/admin9705/budget101.git\ncd budget101\n```\n\n2. **Create virtual environment:**\n```bash\npython -m venv venv\nsource venv/bin/activate  # On Windows: venv\\Scripts\\activate\n```\n\n3. **Install dependencies:**\n```bash\npip install -r requirements.txt\n```\n\n4. **Run the application:**\n```bash\npython app.py\n```\n\n5. **Access the application:**\n   - Open `http://localhost:9715`\n\n## 🏗️ Project Structure\n\n```\nbudget101/\n├── app.py                 # Main Flask application\n├── requirements.txt       # Python dependencies\n├── Dockerfile            # Docker build configuration\n├── docker-compose.yml    # Docker Compose setup\n├── static/               # Static assets (CSS, JS)\n│   ├── css/style.css    # Main stylesheet\n│   └── js/script.js     # JavaScript functionality\n├── templates/            # Jinja2 templates\n│   ├── base.html        # Base template\n│   ├── auth/            # Authentication pages\n│   └── pages/           # Application pages\n├── config/              # Configuration files\n└── .github/workflows/   # GitHub Actions CI/CD\n```\n\n## 🎨 Features Overview\n\n### Bills Management\n- Add and track bills with due dates\n- Categorize bills (Housing, Utilities, etc.)\n- Mark bills as paid/unpaid\n- Set recurring bills\n- Visual progress tracking\n\n### Tax Management\n- Track tax information by year\n- Record income, deductions, and payments\n- Monitor filing status\n- Calculate refunds and amounts owed\n\n### User Settings\n- Customize currency and timezone\n- Configure notification preferences\n- Change passwords securely\n- Export data functionality\n\n## 🔒 Security Features\n\n- **Secure Authentication**: bcrypt password hashing\n- **Session Management**: Configurable session timeouts\n- **Rate Limiting**: Protection against brute force attacks\n- **CSRF Protection**: Built-in Flask security\n- **Input Validation**: Comprehensive form validation\n\n## 🌐 API Endpoints\n\nBudget101 provides RESTful API endpoints:\n\n- `POST /api/bills` - Add new bills\n- `POST /api/taxes` - Add tax records\n- `POST /api/settings/user` - Update user settings\n- `POST /api/settings/password` - Change password\n\n## 🤝 Contributing\n\nWe welcome contributions! Please see our contributing guidelines:\n\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## 📝 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## 🆘 Support\n\n- **Documentation**: [Wiki](https://github.com/admin9705/budget101/wiki)\n- **Issues**: [GitHub Issues](https://github.com/admin9705/budget101/issues)\n- **Discussions**: [GitHub Discussions](https://github.com/admin9705/budget101/discussions)\n\n## 🙏 Acknowledgments\n\n- Inspired by [Huntarr.io](https://github.com/plexguide/Huntarr.io) for design and architecture\n- Built with [Flask](https://flask.palletsprojects.com/) and [Bootstrap](https://getbootstrap.com/)\n- Icons by [Font Awesome](https://fontawesome.com/)\n\n## 📊 Statistics\n\n- **Languages**: Python, HTML, CSS, JavaScript\n- **Framework**: Flask\n- **Database**: SQLite\n- **UI**: Bootstrap 5 with custom dark theme\n- **Deployment**: Docker\n\n---\n\n**Made with ❤️ for personal budget management**\n\n![Budget101 Interface](https://via.placeholder.com/800x400/1a1d23/ffffff?text=Budget101+Interface+Preview) ","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplexguide%2Fbudget101","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fplexguide%2Fbudget101","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplexguide%2Fbudget101/lists"}