<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[What would be the easiest way for running automated local builds of websites on a Linux computer?]]></title><description><![CDATA[<p>What would be the easiest way for running automated local builds of websites on a Linux computer? I have been using Netlify since ~2017, but it has been getting worse every year. I have a web hosting account on a traditional service provider, and would want to run builds locally when Git push commits happen. That way I would have somewhat similar basic functionality for building static site generated websites, without relying on 3rd party build services.</p><p><a href="https://mementomori.social/tags/WebDev" rel="tag">#<span>WebDev</span></a> <a href="https://mementomori.social/tags/HomeLab" rel="tag">#<span>HomeLab</span></a></p>]]></description><link>https://board.circlewithadot.net/topic/90818d1b-2bfe-4757-a27c-6c4bae8eba29/what-would-be-the-easiest-way-for-running-automated-local-builds-of-websites-on-a-linux-computer</link><generator>RSS for Node</generator><lastBuildDate>Thu, 14 May 2026 23:27:13 GMT</lastBuildDate><atom:link href="https://board.circlewithadot.net/topic/90818d1b-2bfe-4757-a27c-6c4bae8eba29.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 23 Apr 2026 16:55:54 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to What would be the easiest way for running automated local builds of websites on a Linux computer? on Thu, 23 Apr 2026 17:23:37 GMT]]></title><description><![CDATA[<p><span><a href="https://infosec.exchange/@lcisec">@<span>lcisec</span></a></span> That can be useful after a build process, but might also get that kind of output previews with a traditional HTTP server.</p><p>Previews are smaller issue than the automated build pipeline.</p>]]></description><link>https://board.circlewithadot.net/post/https://mementomori.social/users/autiomaa/statuses/116455179374708516</link><guid isPermaLink="true">https://board.circlewithadot.net/post/https://mementomori.social/users/autiomaa/statuses/116455179374708516</guid><dc:creator><![CDATA[autiomaa@mementomori.social]]></dc:creator><pubDate>Thu, 23 Apr 2026 17:23:37 GMT</pubDate></item><item><title><![CDATA[Reply to What would be the easiest way for running automated local builds of websites on a Linux computer? on Thu, 23 Apr 2026 16:59:48 GMT]]></title><description><![CDATA[<p><span><a href="/user/autiomaa%40mementomori.social">@<span>autiomaa</span></a></span> I run this on a local machine to verify my changes are working as expected.</p><p>```#!/usr/bin/env python3</p><p>import http.server<br />from http.server import HTTPServer, BaseHTTPRequestHandler<br />import socketserver</p><p>PORT = 8080</p><p>Handler = http.server.SimpleHTTPRequestHandler</p><p>Handler.extensions_map={<br />    '.css': 'text/css',<br />    '.html': 'text/html',<br />    '': 'text/html', # Default is 'application/octet-stream'<br />    }</p><p>httpd = socketserver.TCPServer(("", PORT), Handler)</p><p>print("serving at port", PORT)<br />httpd.serve_forever()<br />```</p>]]></description><link>https://board.circlewithadot.net/post/https://infosec.exchange/users/lcisec/statuses/116455085764023732</link><guid isPermaLink="true">https://board.circlewithadot.net/post/https://infosec.exchange/users/lcisec/statuses/116455085764023732</guid><dc:creator><![CDATA[lcisec@infosec.exchange]]></dc:creator><pubDate>Thu, 23 Apr 2026 16:59:48 GMT</pubDate></item></channel></rss>