bank_account_manage

Simple Implementation of Bank Transactions (Only for test)

Stars
0
Committers
1

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
Related Projects