Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jmablog/hugo-clinic-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames <james@jmablog.com>2020-07-24 18:25:54 +0300
committerJames <james@jmablog.com>2020-07-24 18:25:54 +0300
commit57ec39993b07bfb9fb021e643d7fa10cbc0a5262 (patch)
tree57e673966f3211c012b0feeab213299c5db43e59
parentfc3978b1d65a215ca806b2b15d4748274cc84199 (diff)
Update readme
-rw-r--r--README.md51
1 files changed, 50 insertions, 1 deletions
diff --git a/README.md b/README.md
index bdbec0d..93e2280 100644
--- a/README.md
+++ b/README.md
@@ -2,4 +2,53 @@
A Hugo theme for the generation, organisation, and viewing of patient notes written in markdown, ideal for a physiotherapy or similar clinic that needs to maintain patient records.
-![](images/screenshot.png) \ No newline at end of file
+![](images/screenshot.png)
+
+- View all notes organised by date
+- View all patients organised alphabetically
+- Jump straight to latest note by date
+- Jump straight to last modified note
+- Auto generate patient, date, and description metadata from filenames
+
+### Prerequisites
+
+You need to install the Hugo CLI. For macOS users, you can install with [homebrew](https://brew.sh/).
+```
+brew install hugo
+```
+
+For Windows users, you can install with [choco](https://chocolatey.org/):
+```
+choco install hugo-extended -confirm
+```
+
+### Getting started
+
+Create a new Hugo project folder at the command line with
+
+```
+hugo new site your-project-name
+```
+
+Then change into that directory and run:
+
+```
+cd your-project-name
+git submodule add https://github.com/jmablog/hugo-clinic-notes.git themes/hugo-clinic-notes
+```
+
+Next, copy the contents of the [`exampleSite/config.toml`](https://github.com/jmablog/hugo-clinic-notes/blob/master/exampleSite/config.toml) to your own project's `config.toml`. You can update the fields found in this file using the comments provided (the lines after `#`) as a guide.
+
+Finally, run:
+
+```
+hugo server -F
+```
+
+and open your preferred browser to the localhost address Hugo gives you at the command line to view your notes' homepage.
+
+**If you are seeing a blank page it is probably because you have nothing in your `content/all` directory. Let's add some!**
+
+### Adding patients
+
+TODO \ No newline at end of file