Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/asgarzee/bank_account_manage
- Owner: asgarzee
- Created: 2017-12-14T11:16:24.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T23:50:50.000Z (about 2 years ago)
- Last Synced: 2024-12-03T16:56:09.060Z (about 1 month ago)
- Topics: django, django-rest-framework, django-rest-swagger, jwt-authentication, python-3-5, python3
- Language: Python
- Size: 24.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
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
```