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