"University Management System" is a website with main goal to inculcate technology in the process of managing University data and activites. "University Management System" is a platform where the students can access their academic information and interact with faculty in order to streamline the daily activities of an educational institute.
The project consists of multiple subsystems -
- Academic Information Delivery System
- Assignment Creation and Submission
- Grading System
- Admin Section(For managing students, faculty, courses and departments)
For more information of University-Management-System you can refer to following documents -
Link for SRS: SRS Document
Link for Design Document: Design Document
This project is developed by-
- Krishanu Saini 190001029
- Rahul Kumar 190001049
- Kuldeep Singh 190001030
- Deepkamal Singh 190001011
Visit http://softwarep012.com for live demo. Frontend and Backend working.
Note for every id field
user-id = 1
password = 1234
Link for Instruction Manual: Instruction Manual
1. Mysql (preferably use Mysql Workbench 8.0)
2. Python 3.8 / 3.7 / 3.6 ( Not compatible with python 3.9 )
1. Clone this project
2. Create a .env file similar to .env.example file and populate variables in it.
> MAIL_USERNAME and MAIL_PASSWORD fields in .env file should contain a GOOGLE Email ID and its password required for forgot password feature in authentication
1. Run DDL commands in university.ddl and SQL commands in populate.sql present in /sql folder
2. Create a db.yaml file similar to db.yaml.example file and populate MySQL connection parameters in it. Keep 'mysql_db' field equal to university.
Note the above step is necessary to ensure database works on your system
Double click on makefile.bat -> will do all steps below
Ensure you are using python 3.7 and db.yaml is edited
if possible use venv
pip install -r requirements.txt
Ensure you have created db.yaml, .env and imported mysql
Run the application by executing the command python app.py
Use python 3.7 u
The application runs on localhost:5000
unittest
flask_testing
pip install -r requirements.txt
python test.py
coverage run --source models -m unittest discover && coverage report
coverage html
- Home section - 100%(test.py)
- Admin section - 97%(test.py)
- Auth section - 76%(test_auth.py)
- Student section - 100%(test_student.py)
- Faculty section - 97%(test_faculty.py)
See Coverage file
Please Download the folder and open index.html
Contributions are encouraged. If you want to contribute then follow these steps:
- Fork this repository and make a copy of your own .
- Follow the steps given in Steps To Install to clone from forked repo and set up the project
- Make changes to the project
- Always remember to pull before you commit
- Commit final changes to forked repository
- Create a pull request and if contributors agree then your code will be merged with the main repository