As I mentioned when I recently wrote about upgrading to Gulp 4, I had a number of posts in draft mode relating to my new development process with Git and Gulp. This post is going to be a combination of two of those. Let me start by saying the Sub Resource Integrity (or SRI) is excellent,…
Tag: workflow
Add cache busting hashes with Gulp
I recently restarted my series of blog posts about my new development process with Git and Gulp by talking about how I went about upgrading to Gulp 4. Now that we’ve upgraded, let’s get back to adding new time-saving, website-enhancing functionality. This one is a simple one, cache busting hashes. If you’re not familiar, this is…
Upgrading to Gulp 4
Over a year ago (how time flies!) I was working on a series of blog posts about my new development process with Git and Gulp – the most recent post being about optimising images the easy way. Whilst this most recent post was written a whopping 14 months ago, I did have a lot of other…
Getting going with Heroku and PHP (part 4)
Ok, so this trilogy wasn’t supposed to have a part 4. In Getting going with Heroku and PHP (part 1), part 2 and part 3, I detailed how I got my website successfully published using Git to push to my “master” branch, have Heroku set to automatically deploy from this branch, and have my Procfile set to point…
Getting going with Heroku and PHP (part 3)
In Getting going with Heroku and PHP (part 1) and part 2 I detailed how I made Heroku happy to build and deploy my website, but was now getting Server 5o3 errors when trying to view it in the browser. Not a good place to be! I then (slowly, too slowly) figured out it was because of the…
Git aliases
Taking a slight sidebar from my current blog series entitled Getting going with Heroku and PHP (part 1) (and part 2), I’ve discussed that the commands that I am now using to push updates are as follows… gulp git add . git commit -m “A useful commit message” git push git subtree push –prefix build heroku master This…