Skip to content

jhasiddhant/student-management-system

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Student Management System

Tech Stacks Used:

HTML, CSS, JavaScript, Django, MySQL

Cloning the repository

--> Clone the repository using the command below :

git clone https://github.com/jhasiddhant/student-management-system.git

--> Move into the directory of the project files :

cd student-management-system

--> Install the requirements :

pip install -r requirements.txt

Creating MySQL Database:

step 1:

create database sms;

step 2:

create user 'sms'@'localhost' identified with mysql_native_password by 'password';

step 3:

grant all privileges on *.* to 'sms'@'localhost';

Connecting Database:

Delete all old migrations file in base/migrations and then run following commands:

py manage.py makemigrations
py manage.py migrate

Running the App:

--> Before running we create superuser :

py manage.py createsuperuser

--> To run the App, we use :

py manage.py runserver

⚠ Then, the development server will be started at http://127.0.0.1:8000/

App Preview:

image

image

image