From 9eb664abf611087c42d3b6320ad80eab4d83917e Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 5 Nov 2023 14:47:57 -0500 Subject: [PATCH] Updates --- config.env.template | 2 ++ overdrive-plex.gitignore | 4 +++- template_config.py | 17 +++++++++++++++++ 3 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 config.env.template create mode 100644 template_config.py diff --git a/config.env.template b/config.env.template new file mode 100644 index 0000000..1e9debc --- /dev/null +++ b/config.env.template @@ -0,0 +1,2 @@ +queue="PATH/TO/YOUR/.ODM's" +annex="PATH/TO/YOUR/ANNEX" \ No newline at end of file diff --git a/overdrive-plex.gitignore b/overdrive-plex.gitignore index 927daa7..0f642d6 100644 --- a/overdrive-plex.gitignore +++ b/overdrive-plex.gitignore @@ -1,2 +1,4 @@ __pycache__/ -/.DS_Store \ No newline at end of file +/.DS_Store +config.py +config.env \ No newline at end of file diff --git a/template_config.py b/template_config.py new file mode 100644 index 0000000..0d49997 --- /dev/null +++ b/template_config.py @@ -0,0 +1,17 @@ +''' +Define directories +I like having multiple folders so as to visualize each step happening +but you could easily adjust the setup to fit your preferences +''' + +'''Where the unpackaged odm mp3s will get moved''' +annex="PATH/TO/ANNEX" + +'''Where chapterized and labeled mp3s will be stored''' +circulation="PATH/TO/CIRCULATION" + +'''Where the final finished product will land''' +bookshelf="PATH/TO/BOOKSHELF" + +'''Where the scraps go''' +archive="PATH/TO/ARCHIVE" \ No newline at end of file