Reference

Docu­mentation.

Technical reference for the systems we build. Every project also ships with its own handover document specific to your stack.

  • Every project ships its own handover
  • Plain language
  • Yours to keep

Public reference — last reviewed 11 August 2026

This is the general reference: how the things we build are deployed, how a workflow is put together, what an AI agent is allowed to do, and what arrives at handover. It applies to every project.

Alongside it, every project ships its own handover document written against your actual stack — your hosting, your integrations, your credentials. That one is the authority for your build; this page is the background it assumes.

Reference

How the things we hand over work.

Written so the next developer — including future you — can pick it up without a phone call.

Static hosting on cPanel

Every static site we build is plain files. There is no build step on the server, no Node process to keep alive and nothing to restart. Upload the folder and it is live.

Deploying the whole site in one command
bash
# from your machine, in the project folder
rsync -avz --delete \
  --exclude 'tools/' --exclude '*.md' --exclude '.git' \
  ./ user@yourhost:~/public_html/

# or, with no shell access, upload the same folder in cPanel File Manager

What .htaccess is doing

Four things: forcing HTTPS, collapsing www to the apex domain, redirecting /page.html to /page so the extension leaves Google’s index, and serving page.html when someone asks for /page.

The two rules that make extensionless URLs work
apache
RewriteEngine On

# /page.html -> /page  (301, so the extension drops out of the index)
RewriteCond %{THE_REQUEST} \s/+(.+?)\.html[\s?] [NC]
RewriteRule ^ /%1 [R=301,L]

# /page -> page.html  (internal, the address bar stays clean)
RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule ^(.+?)/?$ $1.html [L]

Reference

About these docs.

No — this is the general reference. Every project also ships its own handover document written against your actual stack, and that is the one to keep.
That is the point of writing it this way. Plain HTML, CSS and JavaScript with no proprietary build step means any competent developer can pick it up.
No. Credentials are delivered through a self-destructing link and removed from our side once you confirm access.

Free scope, fixed price.We reply within one business day.

Get started