Home.md
... ...
@@ -0,0 +1,17 @@
1
+Hello and welcome to the Tea Garden!
2
+This cozy corner, crafted by Gaiwan, is a wiki-style haven for sharing knowledge and growing together.
3
+It's the perfect spot for curious minds eager to dive deep into the world of learning. We're thrilled to have you here and hope your journey through the Tea Garden is enlightening and rewarding.
4
+
5
+## Navigation
6
+
7
+- [[WikiBestPractices]] - **Start Here**
8
+- [[Gaiwan Stack]] - Our technology stack
9
+- [[Patterns]] - collection of organizational and architectural patterns and principles
10
+- [[ReadingList]] - recommended books
11
+
12
+
13
+<<Navigation("Patterns Navigation", "Patterns", false)>>
14
+
15
+<<Navigation("Research Navigation", "Research", false)>>
16
+
17
+<<Navigation("Gaiwan Stack Navigation", "Gaiwan Stack", false)>>
bin/browse
... ...
@@ -0,0 +1,12 @@
1
+#!/bin/sh
2
+
3
+URL="https://wiki.apps.gaiwan.co/$1"
4
+
5
+if command -v xdg-open >/dev/null
6
+then
7
+ # Linux
8
+ exec xdg-open "$URL"
9
+else
10
+ # Mac
11
+ exec open "$URL"
12
+fi
bin/sync
... ...
@@ -0,0 +1,6 @@
1
+#!/bin/sh -x
2
+
3
+git add -A && \
4
+git commit -m "Add local changes" && \
5
+git pull --rebase && \
6
+git push
... ...
\ No newline at end of file