- First fork the project in your account
- Clone your forked repo of the Project
git clone https://<your-username>@github.com/<your-username>/klone-app.git
- A directory called klone-app will be created
- Navigate to t2-cs-05 directory
cd klone-app
- Setup the Environment now. Follow the Steps Below👇
- Make sure python and pip are already installed
- python >= 3.6
- Install Virtual Environment
pip install virtualenv
- Create Virtual Environment
virtualenv venv
- Activate Virtual Environment
venv\Scripts\activate
- Navigate to Project Folder
cd klone_django
- Install dependencies
pip install -r requirements.txt
- Make Migrations
python manage.py makemigrations
- Migrate Changes
python manage.py migrate
- Create Superuser
python manage.py createsuperuser
- Run Server
python manage.py runserver 0.0.0.0:8000