Includes djoser, SimpleJWT, django-filter and django-cors-headers.
-
Clone the repository
git clone https://github.com/gyolkin/drf-boilerplate.git
-
Access the project's folder
cd drf-boilerplate
-
Make it your own repository
rm -rf .git git init
-
Initialize virtual environment
py -m venv env
-
Activate the virtual environment
. env/Scripts/activate
-
Install dependencies
pip install -r requirements.txt
-
Start the development server
python manage.py runserver
-
Prepare for production
python manage.py collectstatic
Good luck with your project!