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" + } + ] +}