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
Fixing typos in Makefile, better links for published git urls.
author
Ben Vogt <[email protected]>
date
2023-04-05 19:30:07
stats
2 file(s) changed, 9 insertions(+), 8 deletions(-)
files
Makefile
dev-config-gshr.toml
 1diff --git a/Makefile b/Makefile
 2index 86b8914..156ca13 100644
 3--- a/Makefile
 4+++ b/Makefile
 5@@ -28,17 +28,17 @@ target/gshr.bin: Makefile target $(wildcard *.go)
 6 build: Makefile target target/output  target/gshr.bin
 7 	@# intentionally blank, proxy for prerequisite.
 8 
 9-dev: Makefile target target/output  target/gshr.bin
10+dev: Makefile target target/output target/gshr.bin
11 	./target/gshr.bin -c=dev-config-gshr.toml -o=target/output && \
12     cd target/output && \
13     python3 -m http.server 80
14 
15-dev-example-go-git: Makefile target target/output  target/gshr.bin
16+dev-example-go-git: Makefile target target/output target/gshr.bin
17 	./target/gshr.bin -c=example-config-gshr-simple.toml -o=target/output && \
18     cd target/output && \
19     python3 -m http.server 80
20 
21-dev-example-gshr-simple: Makefile target target/output  target/gshr.bin
22+dev-example-gshr-simple: Makefile target target/output target/gshr.bin
23 	./target/gshr.bin -c=example-config-gshr-simple.toml -o=target/output && \
24     cd target/output && \
25     python3 -m http.server 80
26diff --git a/dev-config-gshr.toml b/dev-config-gshr.toml
27index e03bcc4..8fd9d8a 100644
28--- a/dev-config-gshr.toml
29+++ b/dev-config-gshr.toml
30@@ -1,23 +1,23 @@
31-base_url = "http://localhost/git/"
32-site_name = "public, self hosted git repositories"
33+base_url = "https://vogtb.github.io/gshr/"
34+site_name = "gshr demo page for github pages"
35 
36 [[repos]]
37 name = "gshr"
38 description = "git static host repo -- generates static html for repos"
39 url = "https://github.com/vogtb/gshr"
40-published_git_url = "github.com/vogtb/gshr"
41+published_git_url = "https://github.com/vogtb/gshr"
42 host_git = true
43 
44 [[repos]]
45 name = "f7"
46 description = "f7 is a spreadsheet formula execution library"
47 url = "https://github.com/vogtb/f7"
48-published_git_url = "github.com/vogtb/f7"
49+published_git_url = "https://github.com/vogtb/f7"
50 host_git = true
51 
52 [[repos]]
53 name = "spreadsheet"
54-description = "TypeScript/javascript spreadsheet parser, with formulas."
55+description = "typeScript/javascript spreadsheet parser, with formulas"
56 url = "https://github.com/vogtb/spreadsheet"
57-published_git_url = "github.com/vogtb/spreadsheet"
58+published_git_url = "https://github.com/vogtb/spreadsheet"
59 host_git = true