/DRF

Building REST APIs using django rest framework. featuring serveral applications for backend, py clients that simulate http requests for several crud operations and a js client that handles logins.

Primary LanguagePythonMIT LicenseMIT

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 .