Skip to content

Latest commit

 

History

History
66 lines (45 loc) · 916 Bytes

File metadata and controls

66 lines (45 loc) · 916 Bytes

Bulan Boarding House Management System

Installation

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