- Clone the repository:
git clone https://github.com/Jaypee2705/boarding-house-management-system.git .
- Create a Virtual Environment:
python -m venv venv
- Activate the Virtual Environment:
venv\Scripts\activate
- Install the dependencies:
pip install -r requirements.txt
- Run the application:
python manage.py runserver
- Open the application in your browser:
http://127:0.0.1:8000/auth/login/
- Migrate the database, cancel the runserver command and run the following command:
python manage.py migrate
- Create a superuser:
python manage.py createsuperuser
Username: admin
Email address:
Password:
Password (again):
Superuser created successfully.
- Run the application again:
python manage.py runserver