online course reservation system - A Django Based Web Portal
- Step 1 : Make sure that you're already installed Python 3.x on your system.
- Step 2 : Open your terminal and then type
mkdir ocrs
cd ocrs
- Step 3: Type following commands to initialize the git and set remote origin (for updated package in future).
git init
git remote add origin https://github.com/harini-ht/ocrs.git
- Step 4 : Clone the repo by using following command.
git branch -M main
git pull origin main
DANGER :
- Don't use
git push
command on the main branch.- Use
git push origin dev
or create your own branch to work on.
- Step 5 : Type in the terminal the following commands to install the dependencies and start the server
pip install -r requirements.txt
python manage.py runserver