- Backend Framework: Django
- Front-end Framework: Bootstrap
-
Fork and Clone
- Fork Hostel-Site Repo
- Clone the repo to your computer.
-
Create a Virtual Environment for the Project
In Windows
python -m venv env env\Scripts\activate
In Ubuntu/MacOS
python -m virtualenv env source env/bin/activate
If you are giving a different name then
env
, then please mention it in.gitigonre
first -
Install all the requirements
pip install -r requirements.txt
-
Make migrations/ Create db.sqlite3
python manage.py makemigrations python manage.py migrate
-
Run server
python manage.py runserver