Live data from Hacker News

Ask HN: Do you pay someone to install self-hosted apps?

news.ycombinator.com

11–16 of 16 posts

Re: Ask HN: Do you pay someone to install self-hosted apps?

#11
post #9

Earlier quoted context omitted.

My main problem is that the clients themselves should be able to self-host their product, without my intervention, and without them having any technical knowledge. I am now doing this by teaching the clients how to use DigitalOcean + cloud-init to create a new server that automatically installs the software required: https://docs.usertrack.net/dedicated-usertrack-server In a perfect world, all those steps mentioned i…

All the steps listed on the url you shared can be automated and the platform can already do this. However, there are two issues: 1) Automated service is only available for DigitalOcean (DO) right now, so your client will have to choose DO as their infra provider. 2) DO does not offer granular OAuth permissions. In order to provision the droplet and modify the DNS records in the DO panel, the client has to authorize '…

I talked to people at DO, and there seems to be no current way to fully automate this process, because, as you said, the client needs to give access to create a droplet on his account.

From what they said, the only way to do that is if they create a DigitalOcean account, go to their settings and create an API token that they can share with me.

It would have been awesome if it was possible for me to send them a link with all the details needed (marketplace image to be used, cloud-init script, etc.), and when they click that link they get sent to a DO registration page, when they create the DO account they would also instantly have that droplet created for them.

As I mentioned before, I already provide a semi-automate way to deploy using cloud-init, the main drawback is that the user still has to manually copy that cloud-init script, which is not too complicated, but it's an extra step.

> provide their ssh public key A non-techincal unforunately user has no idea what a SSH key is. Does it also work with password login?

Re: Ask HN: Do you pay someone to install self-hosted apps?

#12
post #9

Earlier quoted context omitted.

My main problem is that the clients themselves should be able to self-host their product, without my intervention, and without them having any technical knowledge. I am now doing this by teaching the clients how to use DigitalOcean + cloud-init to create a new server that automatically installs the software required: https://docs.usertrack.net/dedicated-usertrack-server In a perfect world, all those steps mentioned i…

All the steps listed on the url you shared can be automated and the platform can already do this. However, there are two issues: 1) Automated service is only available for DigitalOcean (DO) right now, so your client will have to choose DO as their infra provider. 2) DO does not offer granular OAuth permissions. In order to provision the droplet and modify the DNS records in the DO panel, the client has to authorize '…

About your service, I don't understand exactly what it provides and how it would help with my use-case. I checked out your site ( https://deploybob.com/ ), but it doesn't say much.

All the features listed seem to be the same as the DO droplet creation using a marketplace image or cloud-init.

Re: Ask HN: Do you pay someone to install self-hosted apps?

#14
post #4

I am actually building a self-hosted application and this is a really big question/problem. In a perfect world, you could go to any hosting platform and with one click you should be able to install any software you want (as you do on mobile with apps). I am trying to find a solution for this, but so far most of my clients have at least some technical knowledge, the rest are a bit afraid, as you mentioned, to waste to…

I've asked about installing server apps for non-technical users before on Hacker News - each time hoping there might be some progress on this problem, but unfortunately not.

There are solutions like Bitnami which provide one-click installs for popular apps like WordPress. As you've found out, for a VPS you still need to set-up the VPS first before you can do the 'one-click' install (so not really a 'one-click' solution after all).

The choice of server language also affects the ease of deployment. PHP is the easiest among dynamic languages. For some hosting providers, installation of a server app can be as "simple" as uploading scripts to a folder on a server (for example, using a secure FTP client).

Imagine if installing a web server app was as easy as installing a desktop app. It would unlock countless opportunities for developers. My impression is that developers think it's a non-issue or have simply never thought about it.

If I wanted to be really cynical, I might even suggest that some developers prefer things remain complicated because it makes SaaS solutions much more attractive to customers when the self-hosted alternative is so much more complicated. Unfair?

Some previous Ask HNs:

How do you handle server install of a web app for customers?

https://news.ycombinator.com/item?id=13514025

Let customers self-install your server product. Why it so difficult?

https://news.ycombinator.com/item?id=14781420

Re: Ask HN: Do you pay someone to install self-hosted apps?

#15
post #4

I am actually building a self-hosted application and this is a really big question/problem. In a perfect world, you could go to any hosting platform and with one click you should be able to install any software you want (as you do on mobile with apps). I am trying to find a solution for this, but so far most of my clients have at least some technical knowledge, the rest are a bit afraid, as you mentioned, to waste to…

I've asked about installing server apps for non-technical users before on Hacker News - each time hoping there might be some progress on this problem, but unfortunately not. There are solutions like Bitnami which provide one-click installs for popular apps like WordPress. As you've found out, for a VPS you still need to set-up the VPS first before you can do the 'one-click' install (so not really a 'one-click' soluti…

I think it's a bit more complicated because we want to be able to install any app on any hosting. This means that there should be a common one-click-app ecosystem agreed upon by all hosting providers.

Currently each one has its own marketplace (DigitalOcean marketplace, AWS marketplace, etc). A partial solution could be containers, such as Docker, but there still has to be a way to purchase a docker image/container and publish it on any server (currently the Docker container is only public, which makes it harder to deploy private apps).

I think the solution would be to decide on an OS (Ubuntu probably) and create a public container image that could be provided by all hosting provider, which installs:

1) The OS 2) A web-app with a GUI that contains a (public) marketplace and the user can then browse through all the apps on the marketplace and install them in one click on that specific machine.

So, you would go to, let's say, DigitalOcean, you select "New App Server", it provisions a new Ubuntu machine and then you can access the machine in the browser machine-1.myuser.do.com where you see a list of applications that can be installed (which are not DigitalOcean specific, but from a public repository).

> I might even suggest that some developers prefer things remain complicated

I think this is true in many cases, I've seen a lot of "free software" that you can host yourself, but it is way too complicated to set it up yourself, so you end up using their SaaS. I am trying to find better ways to make my application easier to host, but I keep stumpling upon different problems.

Re: Ask HN: Do you pay someone to install self-hosted apps?

#16
post #3

Check out cloudron: https://cloudron.io/

But this is also that has to be installed, right? Can it install any self-hosted app, or only the ones that are currently supported by it?

Co-founder of cloudron here. Cloudron can only install apps that are packaged specifically for it. It is based on Docker and it's easy to package apps - https://cloudron.io/documentation/custom-apps/tutorial/ .
Post reply on HN