It's been a few weeks since I've been able to work on my Bookmark Web Service. I'd taken a short hiatus from Python to study JavaScript some more, and put this project on a temporary hold during that time. This week, I've had some time to jump back into my Bookmark service and launched an … Continue reading Quick Update On ‘Bookmark Web Service’, And Building The Full Application
Category: Web Development
Implementing a Microservices Architecture on my ‘Bookmarks’ Application
For the last few weeks, I've been developing a bookmarking and link shortening application. (Click here to view the latest commit as of the time of this writing) I'd built out most of the backend logic, but ran into an issue with the frontend. As I started introducing frontend tools, frameworks, and libraries, my application started … Continue reading Implementing a Microservices Architecture on my ‘Bookmarks’ Application
My Flask Configuration Handling
I've built a few applications using Flask, but I've had trouble handling configuration, especially when it comes to handling different environments. But I've found a way that works, is simple, and is easy even when using multiple environments. I'll share the details below, or you can go view it on Gist. The Problem As mentioned, … Continue reading My Flask Configuration Handling