This app focuses on tracking expenses and balances between users, offering detailed views of expenses, notifications, and balance tracking.
- Expenses, Categories, and Notifications:
- Create, view, edit, and delete expenses, categories, and notifications.
- Categories:
- View all expenses per year and per month.
- Options for generating reports and analytics.
- Notifications:
- Send users reminders about upcoming expenses via email.
- Detailed Expenses:
- Track who paid, for whom, the amount, date, and currency used.
- Balance Overview:
- View user balances (who owes who and how much).
- Option to send notifications and mark balances as resolved.
- Logging:
- Extensive logging with a 30-day rotation to manage disk usage.
Note: Balance notifications include a cooldown period to prevent excessive alerts.
- Backup: Automatically backs up the database weekly with folder configuration options.
- Notifications: Automatically sends notifications via email based on due dates.
- Manage all cron jobs configured in
settings.py
. Removes, adds, and lists all active cron jobs.
- Automatically runs
collectstatic
andmigrate
commands required to start the server.
- Establishes a secure shell between the user and the server.
- Pulls the latest changes from GitHub and rebuilds the Docker container.
- Creates a Docker container with the app and runs necessary automation scripts.
- Runs the Docker container while mounting the database and logging folders.
To set up the app locally, follow these steps:
# Clone the repository
git clone https://github.com/antk942/Expense-Tracker.git
# Navigate to the project directory
cd ExpenseTracker
# Install dependencies
pip install -r requirements.txt
# Run migrations
python manage.py migrate