The Wagtail CMS Bundle
The Wagtail CMS Bundle
About the Bundle
This bundle combines Four Wagtail CMS books written by MichaelYin into a package that helps you quickly learn Wagtail.
About the Books
The Definitive Guide to Next.js and Wagtail (2.0.0)
This is my #4 eBook of Wagtail, and I wish to talk about the new architecture (Jamstack) in this book.
Jamstack stands for Javascript, API and Markup (generated by a static site generator)
- The frontend app will be prebuilt into highly optimized static pages (Markup) and assets, and deployed to the CDN netowrk.
- Frontend app will use Javascript and API to talk to backend service, to enable dynamic content on some pages.
Jamstack has below benefits:
- Because the pages are prebuilt and served from CDN, pages can load FAST.
- The reduced complexity make the site more secure.
- Easy to scale when traffic grow.
By the end of this course, you will be able to:
- Understand
Docker
and useDocker Compose
to do development - Create blog models to work with Wagtail.
- Learn how to write serializer for Django models.
- Build a REST API for Wagtail CMS
- Use the
factory
package to help create test data - Test the REST API and generate test coverage report
- Create Next.js project with
create-next-app
- Learn React Function Component, and React hooks.
- Use
Tailwind CSS
to build clean and responsive UI. - Understand how Next.js page route works.
- Use next/image to do browser native lazy loading
- Make Wagtail preview work with the Next.js.
- Build comment system based on
django-contrib-comments
which supportGeneric Relations
- Use
Tribute.js
to addMention
andEmoji
support to the comment form. - Learn to use
React Query
to build lazy load comment list. - Test React component using
Jest
and@testing-library
family of packages. - Deploy the Next.js to the Netlify.
- Deploy the backend API to DigitalOcean
Tech
- Python 3.10
- Django 4.1
- Wagtail 4.1
- Next.js 13
- Tailwind 3
- React Function Component, React Hooks
- React Query
- Tribute.js
- Jest
Changelog:
2.0.0
Released 2022-12-21
- Use Tailwind CSS as style solution.
- Use React Query to replace SWR
- Use Next image to do browser native lazy loading
- Add Sitemap and Robots.txt
- Upgrade Django 4, Wagtail 4, update the screenshots
1.0.0
2021-08-16: First release
Build SPA with React and Wagtail (3.0.0)
This book will teach you how to build a SPA
(single-page application) using React
and Wagtail CMS
By the end of this course, you will be able to:
- Understand
Docker
and useDocker Compose
to do development - Create blog models to work with Wagtail.
- Learn how to write serializer for Django models.
- Build a REST API for Wagtail CMS
- Use the
factory
package to help create test data - Test the REST API and generate test coverage report
- Build a React app from
create-react-app
- Learn React Function Component, and React hooks.
- Use
Tailwind CSS
to build clean and responsive UI. - Understand React router
- Make
React app
work with Wagtail preview - Build comment system based on
django-contrib-comments
which supportGeneric Relations
- Use
Tribute.js
to addMention
andEmoji
support to the comment form. - Learn to use
React Query
to build lazy load comment list. - Test React component using
Jest
and@testing-library
family of packages. - Deploy the production app to DigitalOcean
Tech
- Python 3.10
- Django 4.1
- Wagtail 4.1
- Tailwind 3
- React Function Component, React Hooks
- React Router
- React Query
- Tribute.js
- Jest
This book includes:
- A PDF ebook which contains about 30 chapters.
- 30+ screenshots and diagrams, all created by me.
- The source code of the project created in this course.
Changelog:
3.0.0
Released 2022-12-22
- Upgrade Tailwind 3
- Use React Query to replace SWR
- Upgrade Django 4, Wagtail 4, update the screenshots.
2.0.0
Released 2021-09-22
- Use
Tailwind CSS
to replace theBootstrap
, adddark mode
support - Add comment support
- Rewrite with React functional component
- Upgrade to Django 3.2 and Wagtail 2.14
1.0.0
- 2020-12-05: First release
Build Blog with React (SSR) and Wagtail
This book will teach you how to build a blog with React, Wagtail CMS and SSR (Server-Side Rendering), which has good performance and good SEO.
By the end of this course, you will be able to:
- Understand
Docker
and useDocker Compose
to do development - Create blog models to work with Wagtail.
- Use
PDB
andDjango shell
to debug, test code and check data in terminal. - Learn how to write serializer for Django models.
- Use the
factory
package to help create test data - Create React project from
python-webpack-boilerplate
and load it in Django template. - Understand React Components and the component lifecycle
- Test React component using
Jest
and@testing-library
family of packages. - Understand difference between
CSR
andSSR
, and what isRehydration
- Learn how to server-render React component using
django-react-templatetags
andhypernova
- Deploy the production app to DigitalOcean
Tech
- Django 3.1
- Wagtail 2.12
- Webpack 5
- React
- Hypernova
This book includes:
- A PDF ebook which contains about 30 chapters.
- 20+ screenshots and several diagrams, all created by me.
Build Blog With Wagtail CMS (4.0.0)
This book will teach you how to build a modern blog with Wagtail CMS
By the end of this course, you will be able to:
- Understand
Docker
and useDocker Compose
to do development - Use
python-webpack-boilerplate
to jump start frontend project bundled by Webpack. - Install
Tailwind CSS
as the style solution. - Install
Stimulus
, understand how it works and write Stimulus controllers. - Learn how
Dark Mode
works in Tailwind CSS and use Stimulus controller to toggle the dark mode. - Understand the benefit of the healthy Stimulus ecosystem by reusing 3-party Stimulus controller.
- Create blog models to work with Wagtail.
- Use
PDB
andDjango shell
to debug, test code and check data in terminal. - Learn to use
RoutablePage
and addDate
to the post url. - Build
Pagination
component and correctly handle querystring. - Make the blog supports writing in
Markdown
andLatex
. - Create contact page using Wagtail
FormBuilder
- Build menu, meta tags, sitemap, robots.txt for better SEO.
- Build comment system based on
django-contrib-comments
which supportGeneric Relations
- Use
Tribute.js
,Axios
to addMention
andEmoji
support to the comment form. - Deploy the production app to DigitalOcean
Tech
- Python 3.10
- Django 4
- Wagtail 4
- Stimulus 3
- Tailwind CSS 3
This book includes:
- A PDF ebook which contains about 30 chapters.
- 20+ screenshots and several diagrams, all created by me.
Changelog:
4.0.0 Released 2022-11-07
- Drop Bootstrap, and use Tailwind CSS as style solution.
- Use Stimulus to help write Javascript.
- Upgrade Django, Wagtail, update the screenshots.
3.0.0 Released 2021-08-23
- Upgrade Django, Wagtail, update the screenshots.
- Import
python-webpack-boilerplate
as frontend solution - Upgrade Bootstrap 5, drop jQuery, write DOM related code with vanilla JavaScript
2.0.0 Released 2021-01-09
- Rewrite the book and source code, update the screenshots.
- Add content about docker-compose and docker
- Add content about the django-contrib-comments
- Add content about the Webpack
1.0.0 Released 2017-09-13
The Leanpub 60 Day 100% Happiness Guarantee
Within 60 days of purchase you can get a 100% refund on any Leanpub purchase, in two clicks.
Now, this is technically risky for us, since you'll have the book or course files either way. But we're so confident in our products and services, and in our authors and readers, that we're happy to offer a full money back guarantee for everything we sell.
You can only find out how good something is by trying it, and because of our 100% money back guarantee there's literally no risk to do so!
So, there's no reason not to click the Add to Cart button, is there?
See full terms...
Earn $8 on a $10 Purchase, and $16 on a $20 Purchase
We pay 80% royalties on purchases of $7.99 or more, and 80% royalties minus a 50 cent flat fee on purchases between $0.99 and $7.98. You earn $8 on a $10 sale, and $16 on a $20 sale. So, if we sell 5000 non-refunded copies of your book for $20, you'll earn $80,000.
(Yes, some authors have already earned much more than that on Leanpub.)
In fact, authors have earnedover $13 millionwriting, publishing and selling on Leanpub.
Learn more about writing on Leanpub
Free Updates. DRM Free.
If you buy a Leanpub book, you get free updates for as long as the author updates the book! Many authors use Leanpub to publish their books in-progress, while they are writing them. All readers get free updates, regardless of when they bought the book or how much they paid (including free).
Most Leanpub books are available in PDF (for computers) and EPUB (for phones, tablets and Kindle). The formats that a book includes are shown at the top right corner of this page.
Finally, Leanpub books don't have any DRM copy-protection nonsense, so you can easily read them on any supported device.
Learn more about Leanpub's ebook formats and where to read them