Skip to content

Commit

Permalink
Merge pull request #43 from jakewaldron/dev
Browse files Browse the repository at this point in the history
Bug Fixes and Partial Logging
  • Loading branch information
jakewaldron authored Aug 16, 2016
2 parents 287e0cd + 399bbd1 commit 7a370f4
Show file tree
Hide file tree
Showing 3 changed files with 166 additions and 42 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,11 @@ The config file is in the scripts folder. Before first run of the script, pleas
* date_hours_back_to_search - Number of hours to search backwards
* date_minutes_back_to_search - Number of minutes to search backwards

#####Logging
* logging_debug_level - Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
* logging_file_location - Leave blank to use default location - logs folder where the script file resides
* logging_retain_previous_logs - True to append to the log file or False to overwrite the log file on every run of the script.

#####Plex API Authentication - This is only used for shared user emails currently
* plex_username - Plex account username of the server
* plex_password - Plex account password of the server
Expand All @@ -118,6 +123,7 @@ The config file is in the scripts folder. Before first run of the script, pleas
* upload_cloudinary_cloud_name - Cloudinary cloud name
* upload_cloudinary_api_key - Cloudinary api key
* upload_cloudinary_api_secret - Cloudinary api secret
* upload_cloudinary_use_https - True to use https and False to use http for both uploading url and image locations in the email/web page

#####Email
* email_enabled - Enable the creation and sending of an email
Expand Down
7 changes: 7 additions & 0 deletions scripts/config.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ date_days_back_to_search = 7
date_hours_back_to_search = 0
date_minutes_back_to_search = 0

##Logging
logging_debug_level = 'INFO'
#Leave blank to use default location - logs folder where the script file resides
logging_file_location = ''
logging_retain_previous_logs = True

##Plex API Authentication (only used for shared user Emails right now)
plex_username = ''
plex_password = ''
Expand All @@ -24,6 +30,7 @@ upload_use_cloudinary = False
upload_cloudinary_cloud_name = ''
upload_cloudinary_api_key = ''
upload_cloudinary_api_secret = ''
upload_cloudinary_use_https = True

##Web
web_enabled = True
Expand Down
Loading

0 comments on commit 7a370f4

Please sign in to comment.