From 15e0077b4135ff251b24298ab97ffee0ed7ee85a Mon Sep 17 00:00:00 2001 From: Brian Date: Sun, 29 Sep 2019 00:10:54 +0100 Subject: [PATCH] Add sample config --- .gitignore | 4 +++- conf/secrets.sample.json | 4 ++++ conf/sync_settings.sample.json | 15 +++++++++++++++ 3 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 conf/secrets.sample.json create mode 100644 conf/sync_settings.sample.json diff --git a/.gitignore b/.gitignore index 1daddc4..d725f92 100644 --- a/.gitignore +++ b/.gitignore @@ -115,4 +115,6 @@ dmypy.json # Pyre type checker .pyre/ -conf/ +conf/secrets.json +conf/sync_settings.json +conf/token.json diff --git a/conf/secrets.sample.json b/conf/secrets.sample.json new file mode 100644 index 0000000..eca8900 --- /dev/null +++ b/conf/secrets.sample.json @@ -0,0 +1,4 @@ +{ + "client_id": "BOX_CLIENT_ID", + "client_secret": "BOX_CLIENT_SECRET" +} \ No newline at end of file diff --git a/conf/sync_settings.sample.json b/conf/sync_settings.sample.json new file mode 100644 index 0000000..808f164 --- /dev/null +++ b/conf/sync_settings.sample.json @@ -0,0 +1,15 @@ +{ + "blacklist": [ + "FolderA/aaa/bbb.jpg", + "FolderB/File*", + "*something*", + "*.pdf" + ], + "thread_count": 4, + "jobs": [ + { + "itemId": "0", + "localDirectory": "./test" + } + ] +}