Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 633 Bytes

File metadata and controls

39 lines (28 loc) · 633 Bytes

DRF - Django Rest Framework APIs

DRF APIs


  1. Clone the project and make it your own.
git clone https://github.com/iNightjar/DRF.git
cd DNF
git checkout master
rm -rf .git
git init .
git add --all
git commit -m "Your Commit Message"
  1. Create virtual environment and activate it.
python3.10 -m venv venv
source venv/bin/activate

Use .\venv\Scripts\activate if on windows

  1. Install requirements
(venv) python -m pip install pip --upgrade
(venv) python -m pip install -r requirements.txt
  1. Open VSCode
code .