Skip to content

Instantly share code, notes, and snippets.

@danielmorell
Last active November 16, 2020 13:08
Show Gist options
  • Save danielmorell/3114545370ccfc7a711142c740d985c4 to your computer and use it in GitHub Desktop.
Save danielmorell/3114545370ccfc7a711142c740d985c4 to your computer and use it in GitHub Desktop.
Notable Django Resources

Notable Django Resources

The following is a list of resources that I have found helpful and want to keep track of for future reference.

Contents

  1. Bugs / Annoyance Solutions
  2. Deployment
  3. Django Admin
  4. Django REST API
  5. Examples
  6. Forms
  7. Models
  8. Internationalization & localization
  9. Performance Optimization
    1. Cacheing
  10. Static Files
  11. Templates
  12. User Management

Bug / Annoyance Solutions

  1. Remove the stupid trailing slash - Source Code (Greg Brown article)

Deployment

  1. Continuously Deploying Django to DigitalOcean with Docker and GitLab (TestDriven.io Article)
  2. Run multiple Django projects with Nginx and Gunicorn (DevsPlanet forum)

Django Admin

  1. Django Admin Cookbook (Agiliq book)
  2. Manage User Permissions in Django Admin (Real Python article)

Django REST API

  1. Django REST Framework (Python package)
  2. Test Driven Development of a Django RESTful API (Real Python article)

Examples

  1. djangoproject.com GitHub repo (djangoprojects.com Source Code)

Forms

  1. Django Crispy Forms - form -styling (Python package)
  2. Django Custom Widget With 3 Examples (Muhammad Ihfazhillah article)

Internationalization & localization

  1. Django Docs (Django docs)
  2. Supporting Multiple Languages in Django Pt. 1 (Fueled article)
  3. Supporting Multiple Languages in Django Pt. 2 (Fueled article)
  4. Supporting Multiple Languages in Django Pt. 3 (Fueled article)
  5. Django - How To Translate A Website (Samuli Natri video)

Models

  1. Django Model Docs (Django Docs)
  2. How to Merge Querysets (Simple Is Better Than Complex article)

Performance Optimization

  1. Djangocon: really, really fast django (Blog post)

Cacheing

  1. Django’s cache framework docs (Django docs)
  2. Django Cache Settings docs (Django docs)
  3. Python DiskCache - Docs, GitHub, PyPI (Python Package)

Static Files

  1. Storing Django Static and Media Files on Amazon S3 (TestDriven.io Article)

Templates

  1. Django Templates Docs (Django docs)
  2. Django Template Language (Django docs)

User Management

  1. LinkedIn Social Authentication in Django (Real Python article)
  2. How to Extend Django User Model (Simple is Better than Complex article)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment