A school management project in Django would involve creating a web application that helps manage various aspects of a school, such as student enrollment, class schedules, teacher assignments, and grades..
- go to the project folder
- create
.env
for project
command to create envarment for project
python -m venv env
- then just active
.env
command to active envarmant
.\env\Scripts\activate
- Install requirements packege
command to install requirements packege
pip install -r requirements.txt
- Then just Migrate the project
command to migrate
python manage.py migrate
- create a superuser command to create a superuser
python manage.py createsuperuser
- Then run the project
python manage.py runserver
When you run migrate, a superuser is created.
username: admin
password: admin123
To build a fully fledged open source school management.
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.
MIT.