Why would I use this over fly.io? It seems to be very similar at first glance
Show HN: Webapp.io - Free firecracker-based full-stack hosting
11–20 of 44 posts
Re: Show HN: Webapp.io - Free firecracker-based full-stack hosting
#12You're really going to run into trouble with the "no credit card required" thing - people are going to use your service to, at worst, spam and abuse other people and, at best, mine crypto.
Re: Show HN: Webapp.io - Free firecracker-based full-stack hosting
#13Your Docs [0] and Examples[1] page, or many [2] other page in the footer for that matter, return a blank page? [0] https://webapp.io/docs/main [1] https://webapp.io/docs/examples [2] https://webapp.io/docs/integrations Firefox, latest version, no ad blocker enabled. After nosing around in your source a bit, it seems the redirect to https://docs.webapp.io doesn't work for me?
Re: Show HN: Webapp.io - Free firecracker-based full-stack hosting
#14Hey HN, We recently finished our firecracker-based webapp hosting platform. It's like if Vercel and Docker had a baby: You write VM configurations in a language that looks like a Dockerfile, and every commit creates a preview environment which can be "promoted" to a production site. Here's an example configuration: ``` FROM vm/ubuntu:18.04 RUN curl -fSsL https://deb.nodesource.com/setup_12.x | sudo -E bash RUN apt-ge…
What are the limitations of the free hosting? Surely I can’t deploy once and scale infinitely without paying you, right?
We haven't had to formalize any policies, but they'll be similar to other cloud free tiers:
- HTTP only (no terabytes of videos or images exclusively)
- No crypto mining
- No phishing sites
- No sending emails, attacking others, etc
We currently do about a million builds a year, so 99% of projects shouldn't cause problems for us.
Re: Show HN: Webapp.io - Free firecracker-based full-stack hosting
#15Hey HN, We recently finished our firecracker-based webapp hosting platform. It's like if Vercel and Docker had a baby: You write VM configurations in a language that looks like a Dockerfile, and every commit creates a preview environment which can be "promoted" to a production site. Here's an example configuration: ``` FROM vm/ubuntu:18.04 RUN curl -fSsL https://deb.nodesource.com/setup_12.x | sudo -E bash RUN apt-ge…
Vercel aka Zeit originally hosted Docker containers.
In particular, you can do things like
RUN BACKGROUND docker-compose up
EXPOSE WEBSITE 8080
This is super important for most use-cases, since otherwise you have to deal with networking and version control.
Re: Show HN: Webapp.io - Free firecracker-based full-stack hosting
#16Re: Show HN: Webapp.io - Free firecracker-based full-stack hosting
#17Re: Show HN: Webapp.io - Free firecracker-based full-stack hosting
#18Why would I use this over fly.io? It seems to be very similar at first glance
FROM vm/ubuntu:22.04
RUN (install docker)
RUN REPEATABLE docker-compose build
RUN BACKGROUND docker-compose up
EXPOSE WEBSITE localhost:8080
You can also just run entirely non-docker services:
RUN BACKGROUND redis-server
- The DSL will watch which files are used for each build step to skip everything you haven't changed, so builds are much faster - You can use us to clone VMs and run Cypress tests in parallel, then promote one of the clones to a preview environment, and another to a production environment - We're more declarative (in my opinion), we don't have a CLI. Everything is done by editing a Layerfile and git pushing it
TL;DR, we focused on a declarative configuration format to quickly build, fork, and hibernate VMs, where Fly is more focused on building/shipping docker containers (though the products do fill a similar niche)
Re: Show HN: Webapp.io - Free firecracker-based full-stack hosting
#19I signed up and tried to authorize a single github repo, I received a '500 error' from https://webapp.io/api/after_github_oauth?code=&installation_...
If you email me at colin@webapp.io with your GitHub account name, webapp.io account (if any), and the name of the repository, I can take a look for you.