Home Financier is a personal finance management tool designed to simplify the way you track and manage your expenses and income. With a focus on privacy and user control, Home Financier allows you to connect your own storage solutions, such as Google Sheets, to record and analyze your financial data.
- Own Your Data: All financial data is stored in your personal storage, ensuring full control and privacy.
- Expense Tracking: Easily record your expenses with detailed information, including categories, amounts, and dates.
- Income Recording: Keep track of your income sources and amounts in a structured manner.
- gRPC API: A robust gRPC API for seamless integration with other services.
- Google Sheets Integration: Leverage the power of Google Sheets for storage and advanced data manipulation.
- Secure Authentication: Protect your financial data with robust authentication mechanisms.
To get started with Home Financier, follow these simple steps:
- Clone the repository to your local machine.
- Install the required dependencies using Poetry.
- Set up your environment variables based on the
.env.local
. - Initialize the database and apply migrations.
- Start the server using the provided Makefile commands.
Before setting up Home Financier, ensure you have the following installed:
- Python 3.12 or higher
- Poetry package manager
- Docker and Docker Compose (for containerized environments)
- Clone the repository:
git clone https://github.com/your-username/homefinancier.git
- Navigate to the project directory:
cd homefinancier
- Install dependencies using Poetry:
poetry install
- Copy the environment template and configure the variables:
cp .env.local .env
- Run database migrations:
make migrate
To start the Home Financier server, run:
make serve
Access the application through your web browser or interact with the Telegram bot to manage your finances.
To ensure the quality and stability of the application, run the test suite with:
make test-all
For containerized environments, use the provided Docker Compose configuration to deploy Home Financier:
- Copy the environment template and configure the variables:
cp .env.docker .env
- Run
docker-compose
:
docker-compose -f deployment/docker-compose.yaml up --build