diff --git a/config.toml b/config.toml index 7d1f560..501471e 100644 --- a/config.toml +++ b/config.toml @@ -6,7 +6,9 @@ languagecode = "en" [params] sitename = "ClearSky" noauthor = "true" - +[taxonomies] + tag = "tags" + [[menu.primary]] name = "Home" url = "/" diff --git a/content/blog/announcing-clearsky.md b/content/blog/announcing-clearsky.md index c13dc57..64191ee 100644 --- a/content/blog/announcing-clearsky.md +++ b/content/blog/announcing-clearsky.md @@ -2,5 +2,23 @@ title: "Announcing Clearsky" date: 2021-12-17T21:25:16+01:00 draft: true +tags: [clearsky] --- -Hello, this is clearsky! \ No newline at end of file +Hello, this is ClearSky! ClearSky is this vague idea that i’ve had for a while now about hosting small (hobby) projects. + +This blog is a place where I hope this vague idea can grow into a “why” and “how” to host small projects at minimum cost and effort. + +The name ClearSky already gives a hint of this idea (as all good names should!) A clear sky is a sky without clouds. My vague idea is that I want the “cloud devops experience” while minimizing the usage of cloud services. I want to self-host as much as possible. + +Let’s unpack that statement a little bit. “cloud” is a difficult term. Nobody knows what it means exactly. When I say cloud services on this blog, i mean services like: + +- Amazon s3 +- Heroku +- Amazon lambda +- Google appengine + +What these services have in common is that you don’t have to manage the OS or any of the code that handles the infrastructure. However, if you look at cost per gigabyte of traffic or storage, those are way higher than VPSes or real iron. I don’t think those services are bad, I just think that they are not the best fit for small projects. + +So what do I mean by “cloud devops experience”? Well, I think the core of it is that going from “works on my machine” to “runs in production” is achieved by a single command. + +To achieve this, I would run a single VPS with docker and some preinstalled apps like git, postgresql, docker registry, and a custom “admin” app that basically receives webhooks and deploys things. Thats’s the vague idea. You’re probably thinking: “well that’s nothing new”. And it isn’t. There are some applications like dokku that come close to what I envision. I might do a post sometime to list the most important ones. For now, I hope this article has made you curious. I hope to be posting more about ClearSky soon! \ No newline at end of file