├── Chapter01 ├── django.zip └── requirements.dev.txt ├── Chapter02 ├── django.zip ├── logged_out.html └── requirements.dev.txt ├── Chapter03 └── requirements.dev.zip ├── Chapter04 └── requirements.dev.zip ├── Chapter05 └── media_root.zip ├── Chapter06 └── docker.zip ├── Chapter07 └── elasticsearch.zip ├── Chapter08 └── solr.zip ├── Chapter09 └── postgres.zip ├── Chapter10 └── requirements.zip ├── Chapter11 └── docker.zip ├── Chapter12 └── docker.zip ├── Chapter13 └── docker.zip ├── LICENSE └── README.md /Chapter01/django.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Django-2.0-Web-Applications/HEAD/Chapter01/django.zip -------------------------------------------------------------------------------- /Chapter01/requirements.dev.txt: -------------------------------------------------------------------------------- 1 | django<2.1.0 2 | psycopg2 3 | -------------------------------------------------------------------------------- /Chapter02/django.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Django-2.0-Web-Applications/HEAD/Chapter02/django.zip -------------------------------------------------------------------------------- /Chapter02/logged_out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Django-2.0-Web-Applications/HEAD/Chapter02/logged_out.html -------------------------------------------------------------------------------- /Chapter02/requirements.dev.txt: -------------------------------------------------------------------------------- 1 | django<2.1.0 2 | psycopg2 3 | -------------------------------------------------------------------------------- /Chapter03/requirements.dev.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Django-2.0-Web-Applications/HEAD/Chapter03/requirements.dev.zip -------------------------------------------------------------------------------- /Chapter04/requirements.dev.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Django-2.0-Web-Applications/HEAD/Chapter04/requirements.dev.zip -------------------------------------------------------------------------------- /Chapter05/media_root.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Django-2.0-Web-Applications/HEAD/Chapter05/media_root.zip -------------------------------------------------------------------------------- /Chapter06/docker.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Django-2.0-Web-Applications/HEAD/Chapter06/docker.zip -------------------------------------------------------------------------------- /Chapter07/elasticsearch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Django-2.0-Web-Applications/HEAD/Chapter07/elasticsearch.zip -------------------------------------------------------------------------------- /Chapter08/solr.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Django-2.0-Web-Applications/HEAD/Chapter08/solr.zip -------------------------------------------------------------------------------- /Chapter09/postgres.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Django-2.0-Web-Applications/HEAD/Chapter09/postgres.zip -------------------------------------------------------------------------------- /Chapter10/requirements.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Django-2.0-Web-Applications/HEAD/Chapter10/requirements.zip -------------------------------------------------------------------------------- /Chapter11/docker.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Django-2.0-Web-Applications/HEAD/Chapter11/docker.zip -------------------------------------------------------------------------------- /Chapter12/docker.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Django-2.0-Web-Applications/HEAD/Chapter12/docker.zip -------------------------------------------------------------------------------- /Chapter13/docker.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Django-2.0-Web-Applications/HEAD/Chapter13/docker.zip -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Django-2.0-Web-Applications/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Django-2.0-Web-Applications/HEAD/README.md --------------------------------------------------------------------------------