As I have successfully now deployed my code based on HelloWebApp to Heroku, I thought I would make a start on the Hellowebapp Intermediate Concepts book.
However, I have came across a couple of problems at the moment and there could be more.
One of the first I came across was the following:-
File "/home/david/projects/boat/triplog/models.py", line 25, in Social
trip = models.ForeignKey(Trip, related_name="social_accounts")
TypeError: __init__() missing 1 required positional argument: 'on_delete'
I believe this will be referring to the on_delete=CASCADE
etc
I have also come across the fact that url is in the process of being deprecated in favour of re-path().
I actually did notice that the code on Github has changed and I can understand that it must be difficult keeping the book updated as django is quite a fast moving target.
I did find this rather useful link for help with the changes in url, path and re-path:-
https://consideratecode.com/2018/05/02/django-2-0-url-to-path-cheatsheet/
Are there any plans to update the intermediate concepts book?