Added a config sample.

This commit is contained in:
Justin Emter
2017-07-16 10:23:28 -07:00
parent 6ec14941d2
commit 6033c86b08
2 changed files with 30 additions and 0 deletions

1
.gitattributes vendored Normal file
View File

@@ -0,0 +1 @@
pseudo_config.py export-ignore

29
pseudo_config-sample.py Normal file
View File

@@ -0,0 +1,29 @@
#!/usr/bin/python
baseurl = 'http://media.home:32400'
token = '<token>'
'''
*
* List of plex clients to use (add multiple clients to control multiple TV's)
*
'''
plexClients = ['RasPlex']
'''
*
* The increment value between scheduled shows. Let's say you want to reposition all shows to have a clean start time divisable by 15 (i.e. 12:30 or 12:45). Use the value "-1" to disregard.
*
*
'''
timeGap = 15
timeBetweenShows = -1
'''
*
* If there is an overlap, then the overlapGap var in config will determine the next increment. If it is set to "15", then the show will will bump up to the next 15 minute interval past the hour. If it is set to 30, then it will find the next 30 minute interval past the hour to place the episode. Useful for keeping clean schedules.
*
'''
overlapGap = 15