This is a full-stack web application built with Django. The project is currently in an early stage with 5 commits as of the last update.
To get a local copy up and running, follow these steps:
- Clone the repository
git clone https://github.com/Noor-Nizar/StudentAffairsWebsite.git
- Install Django and other dependencies
pip install django
- Run the server
python manage.py runserver
The project contains the following main directories and files:
LibScriptsmyworldvenvdj.
The application uses Django 4.0.4 and SQLite as the database. The DEBUG mode is currently set to True.
The application includes the following Django apps:
django.contrib.admindjango.contrib.authdjango.contrib.contenttypesdjango.contrib.sessionsdjango.contrib.messagesdjango.contrib.staticfilesmembers.apps.MembersConfig
The application includes the following URL patterns:
'': Includesmembers.urlsadmin/: Django admin site
The Student model in the members app has the following fields:
first_name: A char field with a maximum length of 30.last_name: A char field with a maximum length of 30.mail: An email field.phone: A char field with a maximum length of 30.id: A char field with a maximum length of 30 and is the primary key.gender: A char field with a maximum length of 10 and a default value of "".date_of_birth: A date field.level: An integer field.gpa: A float field.status: A char field with a maximum length of 20 and a default value of "".department: A char field with a maximum length of 30 and a default value of "General".
Contributions are what make the open-source community an incredible place to learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
Distributed under the MIT License. See LICENSE for more information.
SECRET_KEY is not suitable for production and the DEBUG mode is currently set to True. You may want to review the settings before deploying this application in a production environment.