From 1b61fb1ff70f37d96bab3b9da00794571b2f4e12 Mon Sep 17 00:00:00 2001
From: Dominik Hebeler <dominik@hebeler.club>
Date: Mon, 21 Nov 2022 09:59:46 +0100
Subject: [PATCH] added template for config file

---
 .gitignore               |  2 +-
 pass/config/default.json | 25 +++++++++++++++++++++++++
 2 files changed, 26 insertions(+), 1 deletion(-)
 create mode 100644 pass/config/default.json

diff --git a/.gitignore b/.gitignore
index 8b67396..7c7c127 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-pass/config/default.json
+pass/config/development.json
diff --git a/pass/config/default.json b/pass/config/default.json
new file mode 100644
index 0000000..9667aab
--- /dev/null
+++ b/pass/config/default.json
@@ -0,0 +1,25 @@
+{
+    "redis": {
+        "host": "redis"
+    },
+    "storage": {
+        "data_path": "/data"
+    },
+    "crypto": {
+        "hmac_integrity_seed": "<insert_secret_for_hmac_seed>",
+        "private_key": {
+            "seed": "<insert_secret_seed>",
+            "bit_length": 2048,
+            "date_format": "MM/YYYY"
+        }
+    },
+    "payments": {
+        "paypal": {
+            "development": {
+                "base": "https://api-m.sandbox.paypal.com",
+                "secret": "<INSERT_PAYPAL_APPLICATION_SECRET>",
+                "client_id": "<INSERT_PAYPAL_CLIENT_ID>"
+            }
+        }
+    }
+}
\ No newline at end of file
-- 
GitLab