Django-based prototype for an online Transaction System
- Welcome page
- Functional Login and Signup Page
- Payment verification System
- Reciept Generation System
-
Create virtual environment and activate:
python -m venv venv source venv/bin/activate # Linux/Mac venv\Scripts\activate # Windows
-
Install django
pip install django
-
Run migrations:
python manage.py migrate
-
Create superuser:
python manage.py createsuperuser
safe to use admin and admin for pass and username
-
Run development server:
python manage.py runserver