aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md13
1 files changed, 11 insertions, 2 deletions
diff --git a/README.md b/README.md
index 8d50786..b325d16 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,12 @@
Configuration:
-- Requires markskitchen user to have access to markskitchen mysql databse
-- Set password on env var 'MARKSKITCHENPWD' \ No newline at end of file
+- Requires mysql database. Include a `config.json` in `src` directory with the following structure:
+```json
+{
+ "database": {
+ "host": "localhost",
+ "user": "YOUR_USER",
+ "database": "YOUR_DB",
+ "password": "YOUR_PWD"
+ }
+}
+```