When I first set up the booking site I thought 30-minute slots would be enough time to give a car a good clean. But now that I’ve done a few cleans I’ve realised it’s not.
On average it’s taking me about 45 minutes to get set up, clean the car properly and take payment. I don’t want to feel rushed, I want to do a good job every time. So I’ve decided to change the booking slots to 45 minutes and see how that goes.
Here’s the techy bit 🤓:
This update was actually pretty simple to make. It’s just one line of Python code that tells the system to create a new slot every 45 minutes instead of every 30:
current += timedelta(minutes=45)
I'm still relying on AI to help me write the code, but I’m starting to understand more of how it works as I go.