Skip to content

devrajash/Devraj_student_management_system

Repository files navigation

Installation

1. Create a Folder where you want to save the project

2. Create a Virtual Environment and Activate

Install Virtual Environment First

$  pip install virtualenv

Create Virtual Environment

For Windows

$  python -m venv venv

For Mac

$  python3 -m venv venv

Activate Virtual Environment

For Windows

$  source venv/scripts/activate

For Mac

$  source venv/bin/activate

3. Clone this project

$  git clone 

Then, Enter the project

$  cd Devraj-student-management-system

4. Install Requirements from 'requirements.txt'

$  pip install -r requirements.txt

5. Add the hosts

  • Got to settings.py file
  • Then, On allowed hosts, Add [‘*’].
ALLOWED_HOSTS = ['*']

No need to change on Mac.

6. Now Run Server

Command for PC:

$ python manage.py runserver

Command for Mac:

$ python3 manage.py runserver

7. Login Credentials

Create Super User (HOD)

$  python manage.py createsuperuser

Then Add Emmail, Username and Password

or Use Default Credentials

For HOD /SuperAdmin Email: admin@gmail.com Password: admin

For Staff Email: stuff@gmail.com Password: stuff123

For Student Email: student@gmail.com Password: student

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published