-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmovieguide.ini.example
55 lines (42 loc) · 1.58 KB
/
movieguide.ini.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Example configuration file for MovieGuide
[reddit]
# Username and password for logging in to reddit.
username=MovieGuide
password=secret
# Default fetch mode {new,rising,hot,top-{hour,day,week,month,year,all}}.
mode=new
# Subredits to monitor are defined by sections beginning with /r/
# (a multireddit works too).
[/r/MovieGuide_sandbox+example]
# Another subreddit, which uses a different fetch mode.
[/r/null]
mode=hot
[settings]
# Database file to store current state, history, etc.
database=movieguide.db
# Signature file to sign posts with (optional).
#
# This file will be inserted at the end of every comment, with the
# following substitutions:
# {itemid} item ID of the post being commented on.
# {score} confidence score from the IMDb search.
# Example:
# *I am a bot.* [Send me feedback]
# (/message/compose?to=nobody&subject=Re:%20http://redd.it/{itemid}
# "Confidence: {score}").
signature=signature.txt
# URL for IMDb API endpoint.
imdburl=http://localhost:8051/imdb
# Filename to store heartbeat (optional).
heartbeat=/tmp/movieguide-heartbeat
[backup]
# (Optional) settings for database backups. Comment out these options
# if you don't want to send backups.
# URL to remote directory to store database backups. Will generate
# filename and PUT the backup into this directory. For example, if
# http://example/backup is specified, a backup might be sent in a PUT
# request to http://example/backup/20130724T050427Z-F-da39a3ee.gz.
url=http://www.myserver.example/dav/backup
# Username and password for backup directory.
username=MovieGuide
password=secret