Read this in other languages: 日本語
NoMoney is a simple household account book (for my wife). This application is implemented by Django.
The way of booking is based on double-entry bookkeeping system.
- Python 3.7+
- Django 3.0
- PostgreSQL 9.5+
Prepare database for NoMoney.
- Clone or copy files of NoMoney.
- Change directory to NoMoney directory and
execute
pip3 install -r requirements.txt
to install necessary libraries. - Modify
config/settings.py
according to your environment. - Execute
python3 manage.py migrate
to migrate. - Execute
django-admin compilemessages
to compile .po file.
Configure web server.
See Deploying Django.
First, add accounts. Open administraton page and add accounts as the following:
Name | Account |
---|---|
Salary | Income |
Cash | Asset |
Credit card | Liability |
Foods | Expense |
Clothes/Beauty | Expense |
... | ... |
In order to book giving and taking of money, open "New Journal" on the right side of the page.
If you want to know the summary, open "Reports" page.
Takeshi Nakamura