Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Banking System | 251 | 5 months ago | 12 | mit | Python | |||||
A Banking System Concept Created Using Django Python Web Framework and Tailwind CSS | ||||||||||
Django Pinpayments | 24 | 2 | 2 years ago | 11 | April 27, 2020 | 12 | Python | |||
Django library to simplify payment processing with pin | ||||||||||
Centralbank | 21 | 3 years ago | mit | HTML | ||||||
Banking app written in Django. | ||||||||||
Django Bank | 21 | a year ago | Python | |||||||
Django-Bank is an open source full fledged Banking Website Developed in Django and designed with Bottstrap.It offers every service that a banking web application should... | ||||||||||
Project 04 | 20 | 2 years ago | 18 | JavaScript | ||||||
Business Bank Account Dashboard using React and Django | ||||||||||
Djangomedicalstorefrontendinreactjs | 17 | 3 years ago | 1 | JavaScript | ||||||
Django Medical StoreFront End In ReactJS | ||||||||||
Proprio | 16 | 6 years ago | 17 | mit | Python | |||||
A free property management software to manage your tenancies | ||||||||||
Django Mollie Ideal | 15 | 6 years ago | 5 | bsd-3-clause | Python | |||||
Python interface to Mollie.nl iDEAL API for use in Django projects. | ||||||||||
E Bank Web App | 13 | 2 years ago | 15 | mit | TypeScript | |||||
This is a web application (front end + back end) for online banking with all essential features. It allows registered users to manage their bank accounts, transfer funds, get a list of transactions as well as to pay their utility bills. | ||||||||||
Django Virtual Pos | 11 | 3 years ago | 20 | April 20, 2020 | 1 | mit | Python | |||
Django module that abstracts the flow of several virtual points of sale including PayPal |
This is an Online Banking Concept created using Django Web Framework.
Be sure you have the following installed on your development machine:
Run Redis server
redis-server
To setup a local development environment:
Create a virtual environment in which to install Python pip packages. With virtualenv,
virtualenv venv # create a virtualenv
source venv/bin/activate # activate the Python virtualenv
or with virtualenvwrapper,
mkvirtualenv -p python3 {{project_name}} # create and activate environment
workon {{project_name}} # reactivate existing environment
Clone GitHub Project,
[email protected]:saadmk11/banking-system.git
cd banking-system
Install development dependencies,
pip install -r requirements.txt
Migrate Database,
python manage.py migrate
Run the web application locally,
python manage.py runserver # 127.0.0.1:8000
Create Superuser,
python manage.py createsuperuser
Run Celery (Different Terminal Window with Virtual Environment Activated)
celery -A banking_system worker -l info
celery -A banking_system beat -l info