Credit Card Service to register user, apply loan, make payments, get statement and cron job for billing
Medium Article explaining the code:
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
-
Clone the repository:
git clone https://github.com/kuchiPie/credit_card_service.git
-
Create a Virtual Environment using your favroite tool.
-
Install requirements:
pip install -r requirements.txt
-
Change Directory
cd credit_card_service
-
Start Development Server
python manage.py runserver
-
Start Celery Worker
python -m celery -A credit_card_service worker -l info
-
Start Celery Beat
python -m celery -A credit_card_service beat -l info
Access the project at http://localhost:8000/.