mirror of
https://github.com/wsvincent/awesome-django.git
synced 2024-11-24 04:21:10 +00:00
add example apps
This commit is contained in:
parent
2c1c5406c1
commit
eb4a18d2f2
165
README.md
165
README.md
|
@ -4,115 +4,134 @@
|
||||||
|
|
||||||
## Table of Contents
|
## Table of Contents
|
||||||
|
|
||||||
- [Table of Contents](#table-of-contents)
|
* [Table of Contents](#table-of-contents)
|
||||||
- [Resources](#resources)
|
* [Resources](#resources)
|
||||||
- [Official Resources](#official-resources)
|
* [Official Resources](#official-resources)
|
||||||
- [General Tutorials](#general-tutorials)
|
* [General Tutorials](#general-tutorials)
|
||||||
- [External Resources](#external-resources)
|
* [External Resources](#external-resources)
|
||||||
- [Starter Projects](#starter-projects)
|
* [Starter Projects](#starter-projects)
|
||||||
- [Example Apps](#example-apps)
|
* [Example Apps: Beginner](#example-apps-beginner)
|
||||||
- [Third-Party Packages](#third-party-packages)
|
* [Example Apps: Advanced](#example-app-advanced)
|
||||||
- [Django Rest Framework](#django-rest-framework)
|
* [Third-Party Packages](#third-party-packages)
|
||||||
- [Resources](#drf-resources)
|
* [Django Rest Framework](#django-rest-framework)
|
||||||
- [General Tutorials](#drf-tutorials)
|
* [Resources](#drf-resources)
|
||||||
- [DRF and React Tutorials](#drf-and-react-tutorials)
|
* [General Tutorials](#drf-tutorials)
|
||||||
- [Starter Projects](#drf-starter-projects)
|
* [DRF and React Tutorials](#drf-and-react-tutorials)
|
||||||
- [Example Apps](#drf-example-apps)
|
* [Starter Projects](#drf-starter-projects)
|
||||||
- [Books](#books)
|
* [Example Apps](#drf-example-apps)
|
||||||
- [Videos](#videos)
|
* [Books](#books)
|
||||||
|
* [Videos](#videos)
|
||||||
|
|
||||||
## Resources
|
## Resources
|
||||||
|
|
||||||
### Official Resources
|
### Official Resources
|
||||||
|
|
||||||
- [Django Official Website](https://www.djangoproject.com/)
|
* [Django Official Website](https://www.djangoproject.com/)
|
||||||
- [Django Documentation](https://docs.djangoproject.com/en/dev/)
|
* [Django Documentation](https://docs.djangoproject.com/en/dev/)
|
||||||
- [Django Polls Tutorial](https://docs.djangoproject.com/en/dev/intro/tutorial01/)
|
* [Django Polls Tutorial](https://docs.djangoproject.com/en/dev/intro/tutorial01/)
|
||||||
- [Django Source Code](https://github.com/django/django)
|
* [Django Source Code](https://github.com/django/django)
|
||||||
|
|
||||||
### General Tutorials
|
### General Tutorials
|
||||||
- [Django for Beginners](https://djangoforbeginners.com/)
|
|
||||||
- [Django Girls Tutorial](https://tutorial.djangogirls.org/en/)
|
* [Django for Beginners](https://djangoforbeginners.com/)
|
||||||
- [Mozilla Tutorial](https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django)
|
* [Django Girls Tutorial](https://tutorial.djangogirls.org/en/)
|
||||||
- [A Complete Beginner's Guide to Django](https://simpleisbetterthancomplex.com/series/beginners-guide/1.11/)
|
* [Mozilla Tutorial](https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django)
|
||||||
|
* [A Complete Beginner's Guide to Django](https://simpleisbetterthancomplex.com/series/beginners-guide/1.11/)
|
||||||
|
|
||||||
### External Resources
|
### External Resources
|
||||||
- [Classy Class-Based Views](http://ccbv.co.uk/) - Detailed descriptions for each generic class-based view.
|
|
||||||
- [Django Packages](https://djangopackages.org/) - Comprehensive directory of reusable Django apps and tools.
|
* [Classy Class-Based Views](http://ccbv.co.uk/) - Detailed descriptions for each generic class-based view.
|
||||||
- [William Vincent's Website](https://wsvincent.com) - Up-to-date tutorials on Django and Django Rest Framework.
|
* [Django Packages](https://djangopackages.org/) - Comprehensive directory of reusable Django apps and tools.
|
||||||
- [Simple is Better than Complex](https://simpleisbetterthancomplex.com/) - Regularly updated website with many tutorials and tips on Django.
|
* [William Vincent's Website](https://wsvincent.com) - Up-to-date tutorials on Django and Django Rest Framework.
|
||||||
- [Full Stack Python's Django Page](https://www.fullstackpython.com/django.html) - Explanation of Django philosophy and links to other resources and tutorials.
|
* [Simple is Better than Complex](https://simpleisbetterthancomplex.com/) - Regularly updated website with many tutorials and tips on Django.
|
||||||
|
* [Full Stack Python's Django Page](https://www.fullstackpython.com/django.html) - Explanation of Django philosophy and links to other resources and tutorials.
|
||||||
|
|
||||||
### Starter Projects
|
### Starter Projects
|
||||||
- [cookiecutter-django](https://github.com/pydanny/cookiecutter-django)
|
|
||||||
- [djangox](https://github.com/wsvincent/djangox)
|
|
||||||
- [edge](https://github.com/arocks/edge)
|
|
||||||
- [demo-allauth-bootstrap](https://github.com/aellerton/demo-allauth-bootstrap)
|
|
||||||
|
|
||||||
### Example Apps
|
* [cookiecutter-django](https://github.com/pydanny/cookiecutter-django)
|
||||||
- [Hello, World app](https://github.com/wsvincent/djangoforbeginners/tree/master/ch2-hello-world-app)
|
* [djangox](https://github.com/wsvincent/djangox)
|
||||||
- [Message Board app](https://github.com/wsvincent/djangoforbeginners/tree/master/ch4-message-board-app)
|
* [edge](https://github.com/arocks/edge)
|
||||||
- [Blog app with users and forms](https://github.com/wsvincent/djangoforbeginners/tree/master/ch7-blog-app-with-users)
|
* [demo-allauth-bootstrap](https://github.com/aellerton/demo-allauth-bootstrap)
|
||||||
- [Newspaper app with custom user model, full user auth](https://github.com/wsvincent/djangoforbeginners/tree/master/ch15-comments)
|
|
||||||
- [Behavior-Driven Development with Aloe](https://github.com/testdrivenio/django-aloe-bdd)
|
### Example Apps: Beginner
|
||||||
|
|
||||||
|
* [Hello, World app](https://github.com/wsvincent/djangoforbeginners/tree/master/ch2-hello-world-app)
|
||||||
|
* [Message Board app](https://github.com/wsvincent/djangoforbeginners/tree/master/ch4-message-board-app)
|
||||||
|
* [Blog app with users and forms](https://github.com/wsvincent/djangoforbeginners/tree/master/ch7-blog-app-with-users)
|
||||||
|
* [Newspaper app with custom user model, full user auth](https://github.com/wsvincent/djangoforbeginners/tree/master/ch15-comments)
|
||||||
|
* [Behavior-Driven Development with Aloe](https://github.com/testdrivenio/django-aloe-bdd)
|
||||||
|
|
||||||
|
### Example Apps: Advanced
|
||||||
|
|
||||||
|
* [Zulip](https://github.com/zulip/zulip) - open-source team chat
|
||||||
|
* [django-oscar](https://github.com/django-oscar/django-oscar) - e-commerce for Django
|
||||||
|
* [django-cms](https://github.com/divio/django-cms) - CMS for Django
|
||||||
|
|
||||||
## Third-Party Packages
|
## Third-Party Packages
|
||||||
|
|
||||||
> For a complete listing of all available packages, see [Django Packages](https://djangopackages.org/)
|
> For a complete listing of all available packages, see [Django Packages](https://djangopackages.org/)
|
||||||
|
|
||||||
- [django-allauth](https://github.com/pennersr/django-allauth/) - User registration, social authentication, account management, and more.
|
* [django-allauth](https://github.com/pennersr/django-allauth/) - User registration, social authentication, account management, and more.
|
||||||
- [django-compressor](https://github.com/django-compressor/django-compressor/) - Compress JavaScript/CSS into a single cached file.
|
* [django-compressor](https://github.com/django-compressor/django-compressor/) - Compress JavaScript/CSS into a single cached file.
|
||||||
- [django-crispy-forms](https://github.com/django-crispy-forms/django-crispy-forms/) - DRY Django forms
|
* [django-crispy-forms](https://github.com/django-crispy-forms/django-crispy-forms/) - DRY Django forms
|
||||||
- [dj-database-url](https://github.com/kennethreitz/dj-database-url/) - Use database URLs in a Django application
|
* [dj-database-url](https://github.com/kennethreitz/dj-database-url/) - Use database URLs in a Django application
|
||||||
- [django-debug-toolbar](https://github.com/jazzband/django-debug-toolbar/) - Configurable panels to debug requests/responses
|
* [django-debug-toolbar](https://github.com/jazzband/django-debug-toolbar/) - Configurable panels to debug requests/responses
|
||||||
- [django-environ](https://github.com/joke2k/django-environ) - Environment variables
|
* [django-environ](https://github.com/joke2k/django-environ) - Environment variables
|
||||||
- [django-extensions](https://github.com/django-extensions/django-extensions/) - Custom management extensions for Django
|
* [django-extensions](https://github.com/django-extensions/django-extensions/) - Custom management extensions for Django
|
||||||
- [django-guardian](https://github.com/django-guardian/django-guardian) - Per object permissions in Django
|
* [django-guardian](https://github.com/django-guardian/django-guardian) - Per object permissions in Django
|
||||||
- [django-haystack](https://github.com/django-haystack/django-haystack) - Modular search for Django
|
* [django-haystack](https://github.com/django-haystack/django-haystack) - Modular search for Django
|
||||||
- [django-registration](https://github.com/macropin/django-registration/) - User registration
|
* [django-registration](https://github.com/macropin/django-registration/) - User registration
|
||||||
- [django-rest-framework](https://github.com/encode/django-rest-framework) - Web APIs for Django
|
* [django-rest-framework](https://github.com/encode/django-rest-framework) - Web APIs for Django
|
||||||
- [whitenoise](https://github.com/evansd/whitenoise) - Simplified static file serving for Python websites
|
* [whitenoise](https://github.com/evansd/whitenoise) - Simplified static file serving for Python websites
|
||||||
|
|
||||||
## Django Rest Framework
|
## Django Rest Framework
|
||||||
|
|
||||||
> DRF is how we build APIs with Django. It's amazing.
|
> DRF is how we build APIs with Django. It's amazing.
|
||||||
|
|
||||||
### DRF Resources
|
### DRF Resources
|
||||||
- [Official Documentation](http://www.django-rest-framework.org/)
|
|
||||||
- [DRF Source Code](https://github.com/encode/django-rest-framework)
|
* [Official Documentation](http://www.django-rest-framework.org/)
|
||||||
|
* [DRF Source Code](https://github.com/encode/django-rest-framework)
|
||||||
|
|
||||||
### DRF Tutorials
|
### DRF Tutorials
|
||||||
- [DRF Blog API](https://wsvincent.com/django-rest-framework-tutorial/)
|
|
||||||
- [Building APIs with Django and DRF](https://books.agiliq.com/projects/django-api-polls-tutorial/en/latest/)
|
* [DRF Blog API](https://wsvincent.com/django-rest-framework-tutorial/)
|
||||||
- [Django Polls API Tutorial](https://wsvincent.com/django-polls-tutorial-api/)
|
* [Building APIs with Django and DRF](https://books.agiliq.com/projects/django-api-polls-tutorial/en/latest/)
|
||||||
- [DRF Serializers, Viewsets, and Routers](https://wsvincent.com/django-rest-framework-serializers-viewsets-routers/)
|
* [Django Polls API Tutorial](https://wsvincent.com/django-polls-tutorial-api/)
|
||||||
- [DRF Todo API with User Auth](https://wsvincent.com/django-rest-framework-authentication-tutorial/)
|
* [DRF Serializers, Viewsets, and Routers](https://wsvincent.com/django-rest-framework-serializers-viewsets-routers/)
|
||||||
- [DRF User Authentication](https://wsvincent.com/django-rest-framework-user-authentication-tutorial/)
|
* [DRF Todo API with User Auth](https://wsvincent.com/django-rest-framework-authentication-tutorial/)
|
||||||
|
* [DRF User Authentication](https://wsvincent.com/django-rest-framework-user-authentication-tutorial/)
|
||||||
|
|
||||||
### DRF and React Tutorials
|
### DRF and React Tutorials
|
||||||
- [DRF with React: Todo API](https://wsvincent.com/django-rest-framework-react-tutorial/)
|
|
||||||
- [DRF with React](https://www.valentinog.com/blog/tutorial-api-django-rest-react/)
|
* [DRF with React: Todo API](https://wsvincent.com/django-rest-framework-react-tutorial/)
|
||||||
- [Making React and Django play well together](https://fractalideas.com/blog/making-react-and-django-play-well-together/)
|
* [DRF with React](https://www.valentinog.com/blog/tutorial-api-django-rest-react/)
|
||||||
|
* [Making React and Django play well together](https://fractalideas.com/blog/making-react-and-django-play-well-together/)
|
||||||
|
|
||||||
### DRF Starter Projects
|
### DRF Starter Projects
|
||||||
- [DRFx](https://github.com/wsvincent/drfx)
|
|
||||||
|
* [DRFx](https://github.com/wsvincent/drfx)
|
||||||
|
|
||||||
### DRF Example Apps
|
### DRF Example Apps
|
||||||
- [](https://github.com/flowerncsu/ecgc-2017)
|
|
||||||
|
|
||||||
|
* [ECGC](https://github.com/flowerncsu/ecgc-2017)
|
||||||
|
|
||||||
## Books
|
## Books
|
||||||
- [Django for Beginners: Learn web development with Django 2.0](https://leanpub.com/djangoforbeginners)
|
|
||||||
- [Two Scoops of Django: Best Practices for Django 1.11](https://www.twoscoopspress.com/products/two-scoops-of-django-1-11/)
|
* [Django for Beginners: Learn web development with Django 2.0](https://leanpub.com/djangoforbeginners)
|
||||||
- [Build Your First Website with Python and Django 1.11](https://www.amazon.com/Build-First-Website-Python-Django/dp/0994616856)
|
* [Two Scoops of Django: Best Practices for Django 1.11](https://www.twoscoopspress.com/products/two-scoops-of-django-1-11/)
|
||||||
- [Test-Driven Development with Python](https://www.amazon.com/dp/1491958707)
|
* [Build Your First Website with Python and Django 1.11](https://www.amazon.com/Build-First-Website-Python-Django/dp/0994616856)
|
||||||
- [Django RESTful Web Services](https://www.amazon.com/dp/1788833929)
|
* [Test-Driven Development with Python](https://www.amazon.com/dp/1491958707)
|
||||||
|
* [Django RESTful Web Services](https://www.amazon.com/dp/1788833929)
|
||||||
|
|
||||||
## Videos
|
## Videos
|
||||||
- [Treehouse](https://teamtreehouse.com/tracks/learn-django)
|
|
||||||
- [Coding for Entrepreneurs](https://www.codingforentrepreneurs.com/)
|
|
||||||
- [GoDjango](https://godjango.com/)
|
|
||||||
|
|
||||||
|
* [Treehouse](https://teamtreehouse.com/tracks/learn-django)
|
||||||
|
* [Coding for Entrepreneurs](https://www.codingforentrepreneurs.com/)
|
||||||
|
* [GoDjango](https://godjango.com/)
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
### License
|
### License
|
||||||
|
|
||||||
[![CC0](http://i.creativecommons.org/p/zero/1.0/88x31.png)](http://creativecommons.org/publicdomain/zero/1.0/)
|
[![CC0](http://i.creativecommons.org/p/zero/1.0/88x31.png)](http://creativecommons.org/publicdomain/zero/1.0/)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user