{"id":29180301,"url":"https://github.com/jerry-bloodberry/expense-tracker","last_synced_at":"2026-04-12T06:32:53.057Z","repository":{"id":298764315,"uuid":"1000352651","full_name":"Jerry-BloodBerry/expense-tracker","owner":"Jerry-BloodBerry","description":"Simple expense tracker PoC written in .NET 8 and Angular 20","archived":false,"fork":false,"pushed_at":"2025-06-29T19:48:05.000Z","size":1236,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-29T20:35:12.286Z","etag":null,"topics":["angular","css","docker","docker-compose","dotnet","expense-tracker","html5","minimalapi","scss","typescript","webapi"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Jerry-BloodBerry.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-06-11T16:40:16.000Z","updated_at":"2025-06-29T19:48:08.000Z","dependencies_parsed_at":"2025-06-12T20:58:14.026Z","dependency_job_id":"be900e4e-b261-483f-b7a2-dfdca4296e0f","html_url":"https://github.com/Jerry-BloodBerry/expense-tracker","commit_stats":null,"previous_names":["jerry-bloodberry/expense-tracker"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Jerry-BloodBerry/expense-tracker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jerry-BloodBerry%2Fexpense-tracker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jerry-BloodBerry%2Fexpense-tracker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jerry-BloodBerry%2Fexpense-tracker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jerry-BloodBerry%2Fexpense-tracker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Jerry-BloodBerry","download_url":"https://codeload.github.com/Jerry-BloodBerry/expense-tracker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jerry-BloodBerry%2Fexpense-tracker/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263021819,"owners_count":23401148,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["angular","css","docker","docker-compose","dotnet","expense-tracker","html5","minimalapi","scss","typescript","webapi"],"created_at":"2025-07-01T19:08:28.756Z","updated_at":"2026-04-12T06:32:53.033Z","avatar_url":"https://github.com/Jerry-BloodBerry.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Expense Tracker\n\nA modern, robust expense tracking application built with .NET 8 that helps you manage and analyze your personal finances. Track expenses, categorize spending, and gain insights into your financial habits.\n\n## Features\n\n- 💰 **Expense Management**: Create, update, and delete expenses with detailed information\n- 📊 **Categorization**: Organize expenses into customizable categories\n- 🏷️ **Tagging System**: Add multiple tags to expenses for better organization\n- 💫 **Recurring Expenses**: Support for tracking recurring expenses\n- 🔍 **Advanced Filtering**: Search and filter expenses by date, amount, category, and tags\n- 📱 **Modern API**: RESTful API built with FastEndpoints for optimal performance\n- 🔒 **Data Integrity**: PostgreSQL database with proper relationships and constraints\n\n## Prerequisites\n\n- [.NET 8 SDK](https://dotnet.microsoft.com/download/dotnet/8.0)\n- [Docker](https://www.docker.com/products/docker-desktop/) (for running PostgreSQL)\n- [Docker Compose](https://docs.docker.com/compose/install/) (usually included with Docker Desktop)\n\n## Getting Started\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/yourusername/expense-tracker.git\n   cd expense-tracker\n   ```\n\n2. Set up HTTPS development certificate (Windows):\n   ```bash\n   # Generate HTTPS development certificate\n   dotnet dev-certs https -ep %USERPROFILE%\\.aspnet\\https\\aspnetapp.pfx -p password\n   \n   # Trust the certificate\n   dotnet dev-certs https --trust\n   ```\n   Note: Replace `password` with the same value as `ASPNETCORE_Kestrel__Certificates__Default__Password` in docker-compose.yml\n\n3. Start the PostgreSQL database using Docker Compose:\n   ```bash\n   docker-compose up -d db\n   ```\n\n4. Run the application:\n   ```bash\n   # Using Docker Compose (recommended)\n   docker-compose up\n\n   # Or run directly with .NET\n   dotnet run --project API\n   ```\n\n5. The API will be available at:\n   - HTTP: http://localhost:5000\n   - HTTPS: https://localhost:5001\n\n## API Documentation\n\nOnce the application is running, you can access the Swagger documentation at:\n- http://localhost:5000/swagger\n- https://localhost:5001/swagger\n\n## Project Structure\n\n- `API/` - Web API project with endpoints and configuration\n- `Core/` - Domain models, interfaces, and business logic\n- `Infrastructure/` - Data access, migrations, and external services\n\n## Development\n\n### Database Migrations\n\nThe project uses Entity Framework Core for database management. To update the database:\n\n```bash\n# From the root directory\ndotnet ef database update --project Infrastructure --startup-project API\n```\n\nTo create a new migration:\n\n```bash\ndotnet ef migrations add MigrationName --project Infrastructure --startup-project API\n```\n\n### Environment Variables\n\nThe application uses the following environment variables (configured in docker-compose.yml):\n\n- `ASPNETCORE_ENVIRONMENT`: Development/Production\n- `ConnectionStrings__DefaultConnection`: PostgreSQL connection string\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch: `git checkout -b feature-name`\n3. Commit your changes: `git commit -am 'Add feature'`\n4. Push to the branch: `git push origin feature-name`\n5. Submit a pull request\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjerry-bloodberry%2Fexpense-tracker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjerry-bloodberry%2Fexpense-tracker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjerry-bloodberry%2Fexpense-tracker/lists"}