aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-05-20 12:33:21 -0400
committerClyne Sullivan <clyne@bitgloo.com>2023-05-20 12:33:21 -0400
commitcacf5366512f83295d2e2809e4a6a09378f63f42 (patch)
treeb6c4efdd488aed1603a4f97da9820f57cd58a315 /README.md
initial commit
Diffstat (limited to 'README.md')
-rw-r--r--README.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..39fcc8f
--- /dev/null
+++ b/README.md
@@ -0,0 +1,26 @@
+# bitgloo-web
+
+This is the code for [bitgloo.com](https://bitgloo.com)'s frontend.
+
+The frontend uses a directory tree of folders, Markdown files, and images to
+create webpages. Primary assets, like the logo and CSS script, are kept as
+internal resources.
+
+Given the URI `/projects/thing`, the frontend will render Markdown files from
+`<content path>/projects/thing` in a sorted order. The files can display images
+in their directory like so: `![](thing/image.jpg)`.
+
+## Usage
+
+Either run with Leiningen:
+
+```
+lein run <port> <content path>
+```
+
+...or with the compiled JAR file:
+
+```
+java -jar bitgloo-web.jar <port> <content path>
+```
+