summaryrefslogtreecommitdiff
path: root/cli/app/settings
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-03-31 20:12:34 +0200
committerJules Laplace <julescarbon@gmail.com>2020-03-31 20:12:34 +0200
commit2b407d1f4a608d0ac23592ff16def77797e4fa41 (patch)
tree44d7b146d56d083e9d1c9fd2979831ea14d19334 /cli/app/settings
init thesaurus api client
Diffstat (limited to 'cli/app/settings')
-rw-r--r--cli/app/settings/app_cfg.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/cli/app/settings/app_cfg.py b/cli/app/settings/app_cfg.py
new file mode 100644
index 0000000..952e76b
--- /dev/null
+++ b/cli/app/settings/app_cfg.py
@@ -0,0 +1,10 @@
+import os
+
+CLICK_GROUPS = {
+ 'api': 'commands/api',
+}
+
+DATA_STORE = 'data_store'
+
+SEARCH_PATH = os.path.join(DATA_STORE, "search")
+CATEGORIES_PATH = os.path.join(DATA_STORE, "categories")