diff --git a/.gitignore b/.gitignore index 70f7336..7cd8203 100644 --- a/.gitignore +++ b/.gitignore @@ -20,6 +20,7 @@ desktop.ini *.tlog *.user *.7z +*.zip *.swp data.csv /boost diff --git a/plugins/FileMonitor/README.md b/plugins/FileMonitor/README.md index 8292b18..9a8a42e 100644 --- a/plugins/FileMonitor/README.md +++ b/plugins/FileMonitor/README.md @@ -159,6 +159,9 @@ To configure the schedule or to add new task, edit the **task_scheduler** sectio - `pip install requests` - `pip install watchdog` - `pip install schedule` + - `pip install pyyaml` + +Note: pyyaml is only needed for a Docker setup. ## Installation diff --git a/plugins/FileMonitor/requirements.txt b/plugins/FileMonitor/requirements.txt index c9d8b8d..8b97bb0 100644 --- a/plugins/FileMonitor/requirements.txt +++ b/plugins/FileMonitor/requirements.txt @@ -1,4 +1,5 @@ stashapp-tools >= 0.2.50 requests watchdog -schedule \ No newline at end of file +schedule +pyyaml \ No newline at end of file