Project ideas from Hacker News discussions.

Show HN: I built self-hosted deployment automation tool for Windows and IIS

📝 Discussion Summary (Click to expand)

1. IIS is still technically maintained but with minimal effort
- “Technically yes, bug fixes and security patches are still produced for Windows Server. I wouldn’t call it a good level of effort but it exists.” – stackskipton
- “Sharepoint, Exchange webmail, and other stuff uses it… that is why it’s officially NOT depricated.” – chews

2. Many enterprises continue to run IIS for legacy .NET Framework workloads
- “There is still plenty of Window Server using enterprises churning out .Net Framework code that must run on IIS. It's shrinking market for sure but it's still a market.” – stackskipton
- “We set up URL rewrites, reverse proxys, asp.net, even node.js or python (flask) based apps using WSGI… Haven't had any security issues with the web server ever.” – icameron

3. Criticism of the tool’s price, click‑ops deployment, and preference for modern alternatives
- “I'm kind of having a hard time understanding what problem this is trying to solve? … The pricing itself seems really steep as well $3K a year?!? I don't exactly know who this is targeting.” – thrownaway561
- “The deployment process is edited in the dashboard rather than defined in source control…. There probably are businesses doing clickops who'd spend $2900 on a tool, but that market is rapidly shrinking.” – onion2k


🚀 Project Ideas

IISConfigSync

Summary

  • Provides a Git‑backed, click‑free way to manage IIS configuration (applicationHost.config, web.config) with diff UI and validation.
  • Enables DevOps teams to treat IIS settings as code, eliminating manual clickops and reducing deployment drift.

Details

Key Value
Target Audience Enterprises running legacy .NET Framework apps on IIS, DevOps/ICP teams wanting IaC
Core Feature Sync IIS configuration to a Git repository, show visual diffs, validate against schema, and apply changes via PowerShell or Azure DevOps pipelines
Tech Stack Electron (or Tauri) desktop UI, PowerShell Core, LibGit2Sharp, Node.js/Express for validation API
Difficulty Medium
Monetization Revenue-ready: $10/user/month for cloud sync, RBAC, and audit logs; self‑hosted enterprise license available

Notes

  • Addresses the complaint: “The deployment process is edited in the dashboard rather than defined in source control.” (onion2k)
  • Gives teams the ability to version‑control IIS settings, a pain point highlighted by users who dislike paying $3k/year for click‑ops tools.
  • Enables discussion around modernizing legacy Windows stacks while preserving existing investments.

IISContainerizer

Summary

  • Automates the containerization of existing IIS‑hosted .NET Framework apps, generating Dockerfiles, docker‑compose/K8s manifests, and CI templates.
  • Lets organizations move legacy workloads to Windows containers with minimal manual effort, paving the way for modern CI/CD pipelines.

Details

Key Value
Target Audience IT ops/maintainers of legacy ASP.NET WebForms/MVC apps seeking to modernize deployment
Core Feature Scans an IIS site (using Microsoft.Web.Administration), extracts dependencies, outputs a Dockerfile (Windows Server Core/nanosite base), and creates ready‑to‑use orchestration files
Tech Stack Python (or .NET Core) for analysis, Docker SDK, Jinja2 templating, optional GitHub Action workflow generator
Difficulty Medium‑High (requires understanding of Windows container nuances and IIS metadata)
Monetization Hobby (open source core) – optional paid support/consulting $150/hr or $5/site/month for premium CI templates and private registry integration

Notes

  • Mirrors the sentiment: “there's still lots of .net framework apps that target IIS… looks like it provides a similar feature set to what Octopus Deploy had back then.” (S04dKHzrKT)
  • Provides a cheaper alternative to expensive deployment tools, addressing the $3k/year pain point.
  • Sparks conversation about moving legacy workloads to containers without rewriting code.

IISInsight Lite

Summary

  • A lightweight, self‑hosted observability stack pre‑configured for IIS logs and performance counters, offering dashboards and alerting out‑of‑the‑box.
  • Gives small‑to‑mid‑sized teams APM‑like visibility without the cost or complexity of enterprise solutions.

Details

Key Value
Target Audience SMBs and departmental IT groups running IIS who lack budget for full‑featured APM
Core Feature Collects IIS request logs, ETW events, and Windows performance counters; feeds Loki/Prometheus; provides Grafana dashboards for request rates, error codes, slow pages, and app‑pool recycling
Tech Stack Go agent for log collection, Loki + Prometheus + Grafana stack; optional Windows Service wrapper; UI via Grafana
Difficulty Low‑Medium (setup of existing OSS stack, but pre‑configured and documented)
Monetization Hobby (open source) – hosted SaaS option $20/month per server for managed logs and support

Notes

  • Responds to users who said “Haven't had any security issues with the web server ever” but still desire better insight (icameron) and those frustrated by expensive tooling.
  • Provides a concrete, affordable path to monitoring, encouraging discussion about lightweight observability for legacy Windows stacks.

Read Later