https://github.com/gyolkin/drf-boilerplate
Django REST Framework [Boilerplate]
https://github.com/gyolkin/drf-boilerplate
boilerplate django django-rest-framework djoser drf jwt jwt-authentication python
Last synced: about 2 months ago
JSON representation
Django REST Framework [Boilerplate]
- Host: GitHub
- URL: https://github.com/gyolkin/drf-boilerplate
- Owner: gyolkin
- License: mit
- Created: 2023-07-27T17:47:04.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-27T18:01:38.000Z (almost 3 years ago)
- Last Synced: 2025-06-01T13:31:26.488Z (about 1 year ago)
- Topics: boilerplate, django, django-rest-framework, djoser, drf, jwt, jwt-authentication, python
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Django REST Framework boilerplate
Includes djoser, SimpleJWT, django-filter and django-cors-headers.
## Getting started
1. Clone the repository
```bash
git clone https://github.com/gyolkin/drf-boilerplate.git
```
2. Access the project's folder
```bash
cd drf-boilerplate
```
3. Make it your own repository
```bash
rm -rf .git
git init
```
4. Initialize virtual environment
```bash
py -m venv env
```
5. Activate the virtual environment
```bash
. env/Scripts/activate
```
6. Install dependencies
```bash
pip install -r requirements.txt
```
7. Start the development server
```bash
python manage.py runserver
```
8. Prepare for production
```bash
python manage.py collectstatic
```
**Good luck with your project!**