Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 638 Bytes

README.md

File metadata and controls

37 lines (28 loc) · 638 Bytes

Simple Implementation of Bank Transactions

This has APIs to create, list and retrieve bank accounts and perform money transfer across accounts and also debit and credit into an account.

It is using JWT for authentication

Requirements

1. Python 3.5
2. Django 1.11
3. MySQL

Create Virtual Environment

Follow instructions at: http://pypi.python.org/pypi/virtualenv

Install Requirements

pip install -r requirements/base.txt

Run Migrations

python manage.py migrate

Create Superuser

python manage.py createsuperuser

Run Server

python manage.py runserver