diff options
author | Zach Berwaldt <zberwaldt@tutamail.com> | 2024-03-18 21:27:24 -0400 |
---|---|---|
committer | zberwaldt <17715430+zberwaldt@users.noreply.github.com> | 2024-03-18 21:30:13 -0400 |
commit | 53b74ec6122c94853f9d43ab2ac1f69efab0886d (patch) | |
tree | 02b6d887d5d0ba5d887ef0334f9dba07d3814292 /db/README.md | |
parent | e5fbe360d355557b978973f62eed06e01e85bb71 (diff) |
clean up, add better error handling
Diffstat (limited to 'db/README.md')
-rw-r--r-- | db/README.md | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/db/README.md b/db/README.md index f36e555..1d5ad71 100644 --- a/db/README.md +++ b/db/README.md | |||
@@ -1,3 +1,11 @@ | |||
1 | # The Database | 1 | # The Database |
2 | 2 | ||
3 | This document describes how to set up the database for your instance of the water application. \ No newline at end of file | 3 | This document describes how to set up the database for your instance of the water application. |
4 | |||
5 | ## Setup | ||
6 | |||
7 | The first step is to decide where you are going to keep your database. Once you have decided on where that is going to be add it to your environment: | ||
8 | |||
9 | ```sh | ||
10 | export DB_PATH="path/to/database" | ||
11 | ``` \ No newline at end of file | ||