/-School-Management-System

School management using Django

Primary LanguageJavaScriptMIT LicenseMIT

Django-School-Management-System

This app is meant to be used by school manager to manage their school records: student data staff results and finances.

It currently doesn't allow students/staff to login. Solely, it's expected to be used on a single machine or online for managers only.

username: admin password: admin123



Run

```python
pip install -r requirements.txt #install required packages
python manage.py migrate # run first migration
python manage.py runserver # run the server

Then locate http://172.0.0.1:8000

Admin Login

When you run migrate, a superuser is created.

username: admin
password: admin123

Roadmap

To build a fully fledged open source school management.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

Coding Standards

isort .
black .

Test

python manage.py test