gshr
git static host repo -- generates static html for repos
git clone https://git.vogt.world/gshr.git
Log | Files | README.md | LICENSE
← Commit log
commit
message
Testing with another repo, adding favicon
author
Ben Vogt <[email protected]>
date
2023-04-04 23:46:46
stats
2 file(s) changed, 8 insertions(+), 0 deletions(-)
files
Makefile
favicon.ico
gshr.toml
 1diff --git a/Makefile b/Makefile
 2index 87a4dec..643e7a6 100644
 3--- a/Makefile
 4+++ b/Makefile
 5@@ -29,6 +29,7 @@ dev: Makefile target target/output target/cloning target/gshr-${OS}-${ARCH}-${EN
 6     --clone=$(PWD)/target/cloning \
 7 		&& \
 8     cp gshr.css $(PWD)/target/output/ && \
 9+    cp favicon.ico $(PWD)/target/output/ && \
10     cd $(PWD)/target/output && \
11     python3 -m http.server 8000
12 
13diff --git a/favicon.ico b/favicon.ico
14new file mode 100644
15index 0000000..2b6e751
16Binary files /dev/null and b/favicon.ico differ
17diff --git a/gshr.toml b/gshr.toml
18index 748275a..22076ca 100644
19--- a/gshr.toml
20+++ b/gshr.toml
21@@ -5,3 +5,9 @@ name = "gshr"
22 description = "git static host repo -- generates static html for repos"
23 path = "/Users/bvogt/dev/src/ben/gshr"
24 git_url = "[email protected]:vogtb/gshr.git"
25+
26+[[repos]]
27+name = "www"
28+description = "static site for www.vogt.world"
29+path = "/Users/bvogt/dev/src/ben/www"
30+git_url = "[email protected]:vogtb/www.git"