- Clone (or download) the repository
$ git clone https://github.com/kuronosu/pandora-finance.git
$ cd pandora-finance
- Create a virtualenv and install the dependencies for python and node
$ virtualenv env
For linux
$ ./env/bin/activate
For windows
$ ./env/Scripts/activate
$ pip install -r requirements.txt
- Migrate the database
$ python manage.py migrate
- Create superuser
$ python manage.py createsuperuser
- Run Django server
$ python manage.py runserver