Student Result Management System helps you manage the results of the students.
This is created as a BCA final year project for IGNOU.
Note: Currently the site supports only student profile and does not have any profile of teachers.
The technology stack used are:
requirements.txt
filePostgreSQL installed on the system with a database called: srms
. To create the database, run the following commands on terminal/cmd:
:: open psql; enter postgres password when prompted.
psql -U postgres
:: create database
CREATE DATABASE database_name;
:: check databases
\l
:: switch to newly created database
\c database_name
Make migrations for Django to create the database tables using models.py
python manage.py makemigrations
python manage.py migrate
python manage.py createsuperuser
:: enter the username, email address and password as required.