diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-05-20 12:33:21 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-05-20 12:33:21 -0400 |
commit | cacf5366512f83295d2e2809e4a6a09378f63f42 (patch) | |
tree | b6c4efdd488aed1603a4f97da9820f57cd58a315 /README.md |
initial commit
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 26 |
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: ``. + +## Usage + +Either run with Leiningen: + +``` +lein run <port> <content path> +``` + +...or with the compiled JAR file: + +``` +java -jar bitgloo-web.jar <port> <content path> +``` + |