Skip to content

Python-Django-Html-Css-Javascript - Developed a web-application for College/Institute so student can pay fees through online mode with the help of Razorpay. Student can Register and login whereas there is seperate section for Admin to manage the data of students with CRUD operation

Notifications You must be signed in to change notification settings

hackzbhavin/Payment-WebApp-Razorpay

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Screenshots of UI

Student Home Page UI


Student Dashboard Page UI


Modes of Payment

Image of Payments Mode


Screenshots and Images/UI of Project

Image of UI



To run the project

Makemigrations for migration of settings.py file and to check installed libraries/module

  • python3 manage.py makemigrations

Migrate Settings for database

  • python3 manage.py migrate

To Runserver

  • python3 manage.py runserver

Git Commands

Push project to existing repositary without changing existing code with new branch

  • git init

  • git add .

  • git commit -m 'your custom commit name'

  • git checkout -b yourname/branch_name

  • git config --global user.email your github emailid

  • git config --global user.name your github username

  • git config --global --list

    CHECK USERNAME AND EMAIL

  • git remote set-url origin url

  • git remote -v

    CHECK URL FETCHED

  • git branch

    CHECK BRANCH

  • git push --set-upstream origin yourname/branch_name



    CONFIGURATION in razor/settings.py

  DATABASES = {
    'default': {
    'ENGINE': 'django.db.backends.mysql',
    'NAME': 'student_pay',                   
    'USER': 'root',
    'PASSWORD': 'root',
    'HOST': '127.0.0.1',                    
    'PORT': '8889',
    # 'OPTIONS':{
    #     'init_command':'SET sql_mode = "STRICT_TRANS_TABLES"'
    # }               
  }
}

About

Python-Django-Html-Css-Javascript - Developed a web-application for College/Institute so student can pay fees through online mode with the help of Razorpay. Student can Register and login whereas there is seperate section for Admin to manage the data of students with CRUD operation

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published