Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/asgarzee/bank_account_manage

Simple Implementation of Bank Transactions (Only for test)
https://github.com/asgarzee/bank_account_manage

django django-rest-framework django-rest-swagger jwt-authentication python-3-5 python3

Last synced: 16 days ago
JSON representation

Simple Implementation of Bank Transactions (Only for test)

Awesome Lists containing this project

README

        

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
```sh
1. Python 3.5
2. Django 1.11
3. MySQL
```

### Create Virtual Environment
Follow instructions at: *http://pypi.python.org/pypi/virtualenv*

### Install Requirements
```sh
pip install -r requirements/base.txt

```

### Run Migrations
```sh
python manage.py migrate
```

### Create Superuser
```sh
python manage.py createsuperuser
```

### Run Server
```sh
python manage.py runserver
```