I've moved my site to Netlify

Prelude

So I've been trying to set access to my CMS for a long time now. The problem was that in order to have CMS accessible through my domain, it requires an OAuth server. I've figured out that creating a custom serverless function which will handle the authentication with GitHub would be sufficient. So I've took some inspiration from the 2 repositories linked in Netlify CMS documentation:

The reason because I link both of these was that I've used the almighty AWS Amplify CLI to create an API for me, which has bootstrapped an express application for me. This turned out to be way easier then to make 4 independent functions as Amplify is not providing a different way of creating simple shared repository of multiple functions like serverless-framework does.

At one point as I was struggling with the Amplify CLI it managed to delete whole API once as I was trying to synchronize my changes with the cloud. But somewhere in the development process of the Amplify framework they made some changes which had made my previously used backend environments unusable. I wasn't able to find any migration information about these changes or anything. I'd found some GitHub issues about similar problems which haven't been resolved in any user friendly manners. So I've decided to just re-create these environments. I was lucky that I haven't had anything important published in these. Also my IDE had saved me and I was able to restore deleted files from cache.

Turning point

After several attempts to publish the API on the AWS I figured out that to be able to use this API I have to configure a custom domain for it because AWS API Gateway appends /${stage} to every URL that it is published. This wouldn't be so bad for any API but I was trying to create a OAuth authentication for Netlify CMS which required the base_name to be equal to the origin of the API. I was trying to configure custom domain name for this API then. Thinking that Amplify will be able to help me, but this isn't a concern for its use case yet. So I've managed to create a certificate for the domain first. Waited half an hour for validation. And then finally I've got to the point that to be able to configure that custom domain name for this API I will have to configure AWS Route58, which is their DNS configuration service, to manage my entire domain which I haven't set up yet as I didn't think it would be necessary. My site has been working correctly just with CNAME configuration just right.

That was my the moment I've decided to quit AWS completely. This was after 2 days configuring and debugging a very simple think such as creating a simple API with 4 routes.

Alternatives

I've done some research and was looking between 2 main contenders to host my precious website:

I haven't found a big decider feature in any of these so I just went with the one I already had an account set up - Netlify. I was able to configure whole deployment of my website in 8 minutes. The instructions where so clear and simple that I've also transfered my DNS nameserver too. I didn't have to search in 10 different services and documentations. I've just went with the flow. Didn't had to change a single line of code. I've just removed the amplify folder and I don't want to see any of the AWS docs ever again.

It got me so pumped that I've immediately logged in to the CMS (finally) through my own domain and written this article.