Earlier quoted context omitted.
I'm usually paranoid about vendor lock in, but I can't join you on this one. Netlify assumes a version control repository that you can pull from, run a build step, and then host static files from. The build tools are open source, the output is static and trivial to download and rehost, and the repository is git meaning one clone is all you need to port to any other service. Where exactly is the vendor lock in?
It's not so much my code that is locked in, as that netlify has spoiled me by making deployment so streamlined that it would be hard to go back to manual deployment. This gives me another option, which I appreciate. That's all I meant.
Show HN: Scar – Static websites with HTTPS, a global CDN, and custom domains
91–100 of 171 posts
Re: Show HN: Scar – Static websites with HTTPS, a global CDN, and custom domains
#92Sorry to nitpick, but "Copyright © 2019" isn't a "license". It's not even a full copyright declaration without listing an owner.
and regarding license, they have the MIT license added to the repository
Re: Show HN: Scar – Static websites with HTTPS, a global CDN, and custom domains
#93Earlier quoted context omitted.
Does the webflow save to a git repo?
Yes. It also provides a really nice UI for building our www site which we like to rev frequently. Webflow is the bomb if you are familiar with HTML and CSS. Super clean HTML, total control over all the css attributes, drag and drop builder.
Re: Show HN: Scar – Static websites with HTTPS, a global CDN, and custom domains
#94Nice project. As an aside, I genuinely wonder under which circumstances a CDN will be useful for a static website nowadays. I have a static website that has been on the HN homepage a few times and got picked up by the Chrome mobile recommendations and a nginx/https with slightly tweaked configuration never had a problem handling the traffic even on the smallest DO droplet. Edit: Thanks for these replies.
Re: Show HN: Scar – Static websites with HTTPS, a global CDN, and custom domains
#95Am I the only one who still hosts my own static sites on a plain old virtual machine? It's pretty simple to configure nginx for static sites, and by doing it yourself you reduce vendor lockin to just about nil. Even if S3 is massively cheaper, $5/month for a tiny VM seems like a small price to pay for being vendor-abstract. I suppose S3 is way less likely to suffer a meaningful outage than my little VM, but how many…
I disagree with encouraging people to do this. You are not accounting for a CDN here, like the post. A website on the HN front page went down yesterday on a $5 VM. And S3 just holds your HTML files, for super cheap. There’s no lock-in concern there. You can easily migrate to nginx in the future if you really want, but start with S3
I run several hundred dollars monthly of infrastructure but my websites are nearly all on a simple VM for about 20€/month on Vultr right now.
Web hosting only is expensive when people run badly optimizer infrastructure
Re: Show HN: Scar – Static websites with HTTPS, a global CDN, and custom domains
#96Re: Show HN: Scar – Static websites with HTTPS, a global CDN, and custom domains
#97Earlier quoted context omitted.
Yes. It also provides a really nice UI for building our www site which we like to rev frequently. Webflow is the bomb if you are familiar with HTML and CSS. Super clean HTML, total control over all the css attributes, drag and drop builder.
Is it a completely hosted service? It looks cool, but I'd be reluctant to use it if it's a subscription to an online tool where I have to pay forever. Is there a standalone version of that editor?
Re: Show HN: Scar – Static websites with HTTPS, a global CDN, and custom domains
#98GitHub pages [0] gives you static sites with HTTPS and a custom domain without nearly as much complexity as this if you're looking for an alternative to Netlify. [0] https://pages.github.com/
https://help.github.com/en/articles/githubs-products#github-...
Re: Show HN: Scar – Static websites with HTTPS, a global CDN, and custom domains
#99great job! I wish more projects have 1-click deploy to Heroku, aws, gcp or azure. This is a good habit more people should get into. Running this project on aws can give a cloud beginner an interesting way to expose them to many concepts. Now I just have to figure out what static website I want to run in this! Please do the same for running your own scalable wordpress install!
Re: Show HN: Scar – Static websites with HTTPS, a global CDN, and custom domains
#100Am I the only one who still hosts my own static sites on a plain old virtual machine? It's pretty simple to configure nginx for static sites, and by doing it yourself you reduce vendor lockin to just about nil. Even if S3 is massively cheaper, $5/month for a tiny VM seems like a small price to pay for being vendor-abstract. I suppose S3 is way less likely to suffer a meaningful outage than my little VM, but how many…