← Build Journal

The zero-dollar cost: an almost-free static site network

How to think about an Astro site network with minimal operating cost using static generation, GitHub, and Cloudflare Pages.

Keeping a site online has become cheap. Keeping a network of sites reliable can still become expensive if every project needs a server, database, admin panel, plugins, backups, and constant maintenance.

Static architecture changes that equation. Not because everything becomes free, but because operational cost stops growing with every new page published.

The almost-zero-cost model

A lean model can use:

  • Astro to generate static files.
  • GitHub to version content and code.
  • Cloudflare Pages for build and hosting.
  • Baserow or another private database to organize editorial operations.
  • n8n to automate publishing.

The public site remains HTML, CSS, and minimal JavaScript. That reduces attack surface, CPU consumption, and dependency on a runtime database.

Why static changes the bill

In a traditional dynamic site, each visit can trigger a server, PHP, database queries, plugins, and cache layers. In a static site, the page is already ready.

That difference sounds technical, but it is also economic. A ready page costs less to serve, breaks less, and scales better during traffic spikes.

For portals, blogs, and institutional pages, this is powerful: a lot of content does not need to be assembled on every request.

What still costs money

Almost zero cost does not mean no cost. There can still be expenses with:

  • domains;
  • paid tools;
  • AI APIs;
  • images and media;
  • transactional email;
  • review and operations time.

The difference is that the public base of the site does not require heavy infrastructure to exist.

Low cost requires discipline

The risk of a cheap architecture is confusing economy with improvisation. To work well, the network needs standards:

  • post templates;
  • content schema;
  • canonicalId;
  • predictable routes;
  • validated build;
  • clear publishing process.

When that discipline exists, low cost becomes a strategic advantage. You can test ideas, publish content, and maintain digital assets without turning each site into a new operational burden.

Tools mentioned