https://github.com/tobiasfunk-personal/www
since this is pretty arbitrary for the project, ill just instruct codex (free version) to generate the construct for us:
you are in the root of a www folder. This folder will later be cloned and served by nginx as a demo page. Target modern browser engines, include required files for a smooth and responsive user experience. You are free to generate design and arbitrary content. For debugging, the website shall display the hostname of the instance running it. I will provide location / { ssi on; } inside the nginx conf, you make use of <!--# echo var="hostname" --> in a nice way..
→ writing this i got the idea if maybe nginx can directly provide the hostname of the container into the html logic, and perplexity confirms this! https://www.perplexity.ai/search/can-i-call-the-machine-hostnam-cl.bI_F4QCCqTqsL.r5F8A
—> putting this into the above www-quote
<aside> 💡
after codex ran, we just trust itll display at least something and push here for now
</aside>
…/www main +
❯ git add .
git add (@ main)
…/www main +
❯ git commit -m "codex bootstrap"
[main 9e1fc9b] codex bootstrap
5 files changed, 352 insertions(+)
create mode 100644 README.md
create mode 100644 favicon.svg
create mode 100644 index.html
create mode 100644 scripts/main.js
create mode 100644 styles/main.css
✔ git commit 9e1fc9b codex bootstrap
…/www main ↑
❯ git push -u origin main
Enumerating objects: 10, done.
Counting objects: 100% (10/10), done.
Delta compression using up to 10 threads
Compressing objects: 100% (7/7), done.
Writing objects: 100% (9/9), 4.97 KiB | 4.97 MiB/s, done.
Total 9 (delta 0), reused 0 (delta 0), pack-reused 0
To <https://github.com/tobiasfunk-personal/www.git>
3c44c8a..9e1fc9b main -> main
branch 'main' set up to track 'origin/main'.
⬆ push main -> origin/main