frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

Show HN: I got tired of managing dev environments, so I built ServBay

https://www.servbay.com
29•Saltyfishh•7h ago
Hey HN,

For years, my local development setup has been a fragile mess of tools that never quite played nicely together. On my mac, it was a constant battle with Homebrew services starting (or not starting) on boot, conflicting PHP and Node versions managed by `asdf` or `nvm`, and a collection of `docker-compose.yml` files that I'd copy-paste and tweak for every single project. The cognitive load was just too high.

Setting up SSL was another chore involving `mkcert`. Sharing a quick demo with a colleague meant firing up ngrok. And if I wanted to run two projects that needed different versions of PostgreSQL? Good luck. I’d have to stop one service to start another.

I missed the simplicity of the MAMP/XAMPP era, but I needed something that could handle the diverse stack of a modern developer – not just PHP and MySQL, but Python, Go, Rust, Node.js, and various databases.

That’s why I (along with my small team) built ServBay. It's our attempt to bring back simplicity and speed to local development without sacrificing power. It's a native app for macOS and Windows, not a wrapper around Docker or VMs.

Here's what it does:

One-Click Stacks: You can install and run multiple, isolated versions of languages like Python, Node.js, Go, Java, Rust, Ruby, and .NET. No more path conflicts or environment variable hell.

Databases, Plural: This was a huge one for me. You can run multiple instances of MySQL, MariaDB, PostgreSQL, Redis, and MongoDB simultaneously. Project A can use Postgres 14 while Project B uses Postgres 16, both running at the same time on different ports.

Automatic SSL: Any host you create gets a valid SSL certificate out of the box. No more browser privacy warnings for `.test` or `.localhost` domains.

Built-in Tunneling: If you need to demo a feature or test a webhook, there's a one-click button to expose your local site to the internet via a secure tunnel.

One-Click Local AI: This is something we're really excited about. We've added a feature to easily download and run models like Llama 3 or Stable Diffusion locally through a simple UI, so you can experiment without worrying about API keys or costs.

Everything Else: It also handles one-click backups, has a clean, non-intrusive UI, and is designed to be as lightweight as possible.

I know what many of you are thinking: "Why not just use Docker?"

And that's a fair question. We use Docker for production and complex, multi-service architectures. But for quickly spinning up a single-service app, testing a new framework, or just general day-to-day development, the overhead of `Dockerfile`s, `docker-compose.yml`, slow file sync on macOS, and resource consumption often feels like overkill. ServBay is for those moments where you just want to get to the code.

The project is still young, and we have a long roadmap ahead. I'm here all day to answer any questions, listen to your (brutally honest) feedback, and hear about what your own development workflows look like.

You can check it out here: https://www.servbay.com

Thanks for reading.

Comments

unchar1•3h ago
This looks interesting.

One small feedback: It took me a while to figure out what it actually does. The homepage makes it look more like coolify or dokku.

m90•3h ago
Congrats on building this. But, please do not auto translate your website content, English is fine. For my language the part about trust is really cringe, which is not really building trust, you know.
cr125rider•3h ago
> slow file sync on macOS

So at your core you’re trying to solve an Apple bug?

dangus•3h ago
Notice there's no Linux version, maybe because nobody who uses Linux as a workstation would want this flavor of spaghetti.

The "why not use Docker?" question isn't really answered very well. If you're developing on Linux the obvious answer is that something based on containers is going to be a lot more robust and make more sense than this.

I could see this product being used by someone who is trying to untangle some legacy spaghetti, but to me it seems like if you introduced this to a new development workflow you'd be cementing some outdated and dangerous practices - a lot of stuff here happening outside of source control.

pacifika•3h ago
Looks interesting enough to try out. i was looking if it explicitly supported django but it supports the underlying tech.
dangus•3h ago
These are my concerns watching this video:

1. In a team environment, this seems like it would cement bad long-term practices into your workflow. So much is happening outside of source control. I see there's a unified configuration feature but it seems like a GUI of various ways to make a big mess that your future DevOps team is going to facepalm about and untangle.

2.

> For years, my local development setup has been a fragile mess of tools that never quite played nicely together. On my mac, it was a constant battle with Homebrew services starting (or not starting) on boot, conflicting PHP and Node versions managed by `asdf` or `nvm`, and a collection of `docker-compose.yml` files that I'd copy-paste and tweak for every single project. The cognitive load was just too high.

This to me reads as "I don't know what I'm doing and I'm having a bad time." Me personally, I'm not copying and pasting docker-compose.yml files around manually, I'm using source control with a development team and using feature branches like a well-adjusted person. I'm not constantly battling with Homebrew, none of my development environments depend on Homebrew as that is not what the tool is for.

3. In the demo video, the use of AI imagery (of a particularly low quality) and the AI narrator seems very lazy and makes me think that I shouldn't use the app because it might be AI slop with lots of bugs and security issues. I'd rather see a demo given by someone who isn't the best speaker than hear a fake AI voice.

4. The "Why not just use Docker?" question has not been sufficiently countered.

hansonkd•3h ago
Not sure if your testimonials are real or not. The few I looked at didn't appear in any google results and many have AI looking avatars one is even named "jaime freelancer"
linhns•3h ago
Not sure if it suits your goal but I would suggest using mise. https://mise.jdx.dev/
renshijian•3h ago
This website is like a "caffeine" for developers - you'll be refreshed as soon as you click on it! ServBay makes local development as smooth as drinking bubble tea, and everyone who uses it will enjoy it
hk1337•2h ago
I feel like SSL certificates for local environments is a red herring. For 95% of the developers, I would imagine, absolutely do not need it and 4% that say they do are using http://127.0.0.1 instead of http://localhost and wondering why they're getting errors that the site isn't secure?
jonsully•2h ago
This post reads like you just finished building this (congrats!) and even says:

> The project is still young

But the website is stuffed with AI and yet "Trusted by over 100,000 developers worldwide"?

Doesn't pass the smell test for me.

whydoineedthis•2h ago
If there were a servbay.yaml file that a person could export & commit this would probably go down smoother from some folks.

If you added a feature to push/fetch and sync the local development database from an s3 (or like bucket) it would solve one of the real core problems of new developers getting started.

That nginx proxy probably works 99.999% of the time, but oh boy, is that .001% going to tick someone off. Proxy's always add a small layer of complexity that can fubar things in strange ways, i know from running many of proxies in production just fine until that tiny little app/proxy config change that borks it. I haven't dug in enough yet, but i hope it can be bypassed.

Ambitious project that I think has some legs. A lot of devs dislike docker and many teams struggle to use it well anyway (for instance, a good dev Dockerfile is usually not the same as a good production Dockerfile). You will need to make this more "IAC-like" if you want to beat it though, imho.

Keep going and good luck!

J.P. Morgan's OpenAI loan is strange

https://marketunpack.com/j-p-morgans-openai-loan-is-strange/
65•vrnvu•27m ago•23 comments

Claude Code on the Web

https://www.anthropic.com/news/claude-code-on-the-web
113•adocomplete•1h ago•49 comments

Production RAG: what I learned from processing 5M+ documents

https://blog.abdellatif.io/production-rag-processing-5m-documents
205•tifa2up•4h ago•53 comments

BERT is just a single text diffusion step

https://nathan.rs/posts/roberta-diffusion/
278•nathan-barry•5h ago•66 comments

AWS Multiple Services Down in us-east-1

https://health.aws.amazon.com/health/status?ts=20251020
1266•kondro•12h ago•1617 comments

Alibaba Cloud says it cut Nvidia AI GPU use by 82% with new pooling system

https://www.tomshardware.com/tech-industry/semiconductors/alibaba-says-new-pooling-system-cut-nvi...
242•hd4•7h ago•170 comments

Space Elevator

https://neal.fun/space-elevator/
1332•kaonwarb•15h ago•296 comments

DeepSeek OCR

https://github.com/deepseek-ai/DeepSeek-OCR
794•pierre•13h ago•207 comments

x86-64 Playground – An online assembly editor and GDB-like debugger

https://x64.halb.it/
38•modinfo•2h ago•2 comments

AWS outage shows internet users 'at mercy' of too few providers, experts say

https://www.theguardian.com/technology/2025/oct/20/amazon-web-services-aws-outage-hits-dozens-web...
179•evolve2k•2h ago•111 comments

TernFS – an exabyte scale, multi-region distributed filesystem

https://www.xtxmarkets.com/tech/2025-ternfs/#posix-shaped
51•kirlev•2h ago•4 comments

Dutch spy services have restricted intelligence-sharing with the United States

https://intelnews.org/2025/10/20/01-3416/
169•Refreeze5224•2h ago•76 comments

How to stop Linux threads cleanly

https://mazzo.li/posts/stopping-linux-threads.html
124•signa11•5d ago•48 comments

Optical diffraction patterns made with a MOPA laser engraving machine [video]

https://www.youtube.com/watch?v=RsGHr7dXLuI
77•emsign•6d ago•10 comments

The Great Horse Manure Crisis of 1894: predictions of 9 feet of manure in cities

https://en.wikipedia.org/wiki/Great_horse_manure_crisis_of_1894
26•SweetSoftPillow•6d ago•29 comments

Chess grandmaster Daniel Naroditsky has passed away

https://old.reddit.com/r/chess/comments/1obnbmu/grandmaster_daniel_naroditsky_has_passed_away/
193•ntnbr•2h ago•51 comments

Servo v0.0.1

https://github.com/servo/servo
388•undeveloper•7h ago•109 comments

The longest baseball game took 33 innings to win

https://www.mlb.com/news/the-longest-professional-baseball-game-ever-played
8•mooreds•5d ago•11 comments

Docker Systems Status: Full Service Disruption

https://www.dockerstatus.com/pages/incident/533c6539221ae15e3f000031/68f5e1c741c825463df7486c
303•l2dy•12h ago•120 comments

Entire Linux Network stack diagram (2024)

https://zenodo.org/records/14179366
527•hhutw•16h ago•45 comments

Peanut Allergies Have Plummeted in Children

https://www.nytimes.com/2025/10/20/well/peanut-allergy-drop.html
52•JumpCrisscross•1h ago•37 comments

Automate all the things with Swift Subprocess

https://blog.jacobstechtavern.com/p/swift-subprocess
25•jakey_bakey•1w ago•3 comments

Show HN: Playwright Skill for Claude Code – Less context than playwright-MCP

https://github.com/lackeyjb/playwright-skill
109•syntax-sherlock•8h ago•34 comments

iOS 26.1 lets users control Liquid Glass transparency

https://www.macrumors.com/2025/10/20/ios-26-1-liquid-glass-toggle/
11•dabinat•26m ago•1 comments

Qt Group Buys IAR Systems Group

https://www.qt.io/stock/qt-completes-the-recommended-public-cash-offer-to-the-shareholders-of-iar...
53•shrimp-chimp•7h ago•31 comments

Modeling Others' Minds as Code

https://arxiv.org/abs/2510.01272
54•PaulHoule•6h ago•38 comments

Pointer Pointer (2012)

https://pointerpointer.com
212•surprisetalk•1w ago•27 comments

The Peach meme: On CRTs, pixels and signal quality (again)

https://www.datagubbe.se/crt2/
73•zdw•1w ago•33 comments

Fractal Imaginary Cubes

https://www.i.h.kyoto-u.ac.jp/users/tsuiki/icube/fractal/index-e.html
49•strstr•1w ago•7 comments

Introduction to reverse-engineering vintage synth firmware

https://ajxs.me/blog/Introduction_to_Reverse-Engineering_Vintage_Synth_Firmware.html
177•jmillikin•17h ago•24 comments