Skip to content

themarti/numbles

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Numbles

A Django-based web application for managing personal finances.

Screenshot

Preview

Requirements

In order to use Numbles, you will need the following applications installed:

You will also need to install a number of Python packages. This can be done automatically by running the following command in the directory containing the source code for Numbles:

pip install -r requirements.txt

Installation

Please carefully follow the instructions below to install Numbles:

  1. Create a PostgreSQL user and database:

     CREATE USER numbles WITH PASSWORD 'insert_password_here';
     CREATE DATABASE numbles WITH OWNER numbles;
    
  2. Copy numbles/local_settings.py.default to numbles/local_settings.py..

  3. Open numbles/local_settings.py and edit the settings as needed.

  4. Perform database migrations:

     ./manage.py migrate
    
  5. Create a superuser:

     ./manage.py createsuperuser
    
  6. To launch the development server, run the following command:

     ./manage.py runserver
    

About

Python web application for managing personal finances.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 60.8%
  • HTML 38.6%
  • CSS 0.6%