summaryrefslogtreecommitdiff
path: root/forge/script/rsyncGlitch.txt
diff options
context:
space:
mode:
authorSt33v <github@f3rr3t.com>2026-02-01 14:53:04 +1100
committerSt33v <github@f3rr3t.com>2026-02-01 14:53:04 +1100
commitbb93e8d7c0a37a38d80b75d55117a75aa53e1de1 (patch)
treee1d1b4b8cd3c20b8dca38df5d141c1b337ee7780 /forge/script/rsyncGlitch.txt
parent70f2fc45af8a0ea98e0e6f7b4254928dc7bfe317 (diff)
robots / sitemap demo version
Diffstat (limited to 'forge/script/rsyncGlitch.txt')
-rw-r--r--forge/script/rsyncGlitch.txt51
1 files changed, 51 insertions, 0 deletions
diff --git a/forge/script/rsyncGlitch.txt b/forge/script/rsyncGlitch.txt
new file mode 100644
index 0000000..0b3142b
--- /dev/null
+++ b/forge/script/rsyncGlitch.txt
@@ -0,0 +1,51 @@
+This is background for gpt.
+Here I explain th details of the static site generation schema for st33v.com.
+
+Brifely, the site is built from two 'faircamp's:
+ one for the main site and
+ song of the day (sotd), which lives in st33v.com/sotd (i.e thats its base url)
+
+detail:
+st33v@cr4y:~/dox/st33v.com$ tree -La 2
+.
+├── faircamp
+│   ├── campsite.png
+│   ├── catalog.eno
+│   ├── deploy.sh
+│   ├── drMorbius
+│   ├── eli
+│   ├── .faircamp_build
+│   ├── .faircamp_cache
+│   ├── robots.txt
+│   └── st33vTM
+├── forge
+│   ├── automationUseCase.txt
+│   ├── in
+│   ├── out
+│   ├── script
+│   └── template
+├── .git
+│   └─[redacted for clarity]
+└── sotd
+ ├── 2016-01-29-pluto
+ ├── 2026-01-29-devonian-dunkleosteus
+ ├── 2026-01-30-grouse
+ ├── 2026-01-30-llmtm
+ ├── catalog.eno
+ ├── .faircamp_build
+ ├── .faircamp_cache
+ └── sotd_cover.png
+
+The two static site are held in the two .faircamp_build directories
+
+rsync copies their contents to st33.com and st33v.com/sotd, respectively.
+
+BUT the base site know nothing of sotd, so the --delete directive deletes all of sotd.
+This is not what we want.
+
+Question: How can we protect sotd from the ravages of rsync?
+
+There is also a second question around the robots & sitemap generator. Are we allowed to have a robots.txt & sitemap.xml in sot as well?
+
+Or is there a more elegant way to include the entire /sotd path in th first script?
+