https://github.com/b-ryan/buckit
A self-hosted budget app
https://github.com/b-ryan/buckit
Last synced: 11 months ago
JSON representation
A self-hosted budget app
- Host: GitHub
- URL: https://github.com/b-ryan/buckit
- Owner: b-ryan
- Created: 2013-05-30T21:17:55.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2016-01-03T20:45:11.000Z (about 10 years ago)
- Last Synced: 2025-01-10T20:53:01.673Z (about 1 year ago)
- Language: Python
- Size: 715 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# budget
A self-hosted budgeting app.

## Setup
```bash
sudo apt-get install python-virtualenv
sudo apt-get install virtualenvwrapper
sudo apt-get install inotify-tools
mkvirtualenv buckit
pip install -r requirements.txt
pip install -r dev_requirements.txt
# create the database
psql
CREATE ROLE buckit LOGIN ENCRYPTED PASSWORD 'password';
CREATE DATABASE buckit OWNER buckit;
\q
alembic upgrade head
```
## Running
workon buckit
./devserver.py
## TODO
- unit testing
- API documentation
- better installation instructions
- distributable package