Rename mote configuration file
This commit is contained in:
parent
f6f8769666
commit
a6763e75cf
2 changed files with 1 additions and 1 deletions
45
roles/mote/templates/config.py
Normal file
45
roles/mote/templates/config.py
Normal file
|
@ -0,0 +1,45 @@
|
|||
'''
|
||||
Crawler Configuration
|
||||
'''
|
||||
|
||||
log_endpoint = "/srv/web/meetbot"
|
||||
#log_endpoint = "/home/user/mote/test_data/meetbot"
|
||||
|
||||
# Fedora has a "teams" folder which contains
|
||||
# logs from meetings started with a certain team name
|
||||
# for instance, `#startmeeting famna` will save in "/teams/famna"
|
||||
# Folders not in "teams" reflect the channel name of the meeting
|
||||
log_team_folder = "teams"
|
||||
|
||||
# Directories to ignore in crawling the logs.
|
||||
# These folders are ignored. The "meetbot" folder is
|
||||
# an infinite loop on Fedora's meetbot instance.
|
||||
ignore_dir = "meetbot"
|
||||
|
||||
# Location where raw logs/minutes are stored (remote location)
|
||||
meetbot_prefix = "http://meetbot.fedoraproject.org"
|
||||
|
||||
# Time (in seconds) after which the log/meeting cache expires
|
||||
cache_expire_time = 60 * 60 * 1
|
||||
|
||||
|
||||
'''
|
||||
Development Configuration
|
||||
'''
|
||||
|
||||
enable_debug = True
|
||||
app_port = 5000
|
||||
app_host = "127.0.0.1"
|
||||
|
||||
'''
|
||||
General Configuration
|
||||
'''
|
||||
|
||||
admin_groups = ["sysadmin-mote"]
|
||||
memcached_ip = "127.0.0.1:11211"
|
||||
# memcached must be installed for this feature
|
||||
use_memcached = False # Use a memcached store for greater performance
|
||||
|
||||
# JSON cache store location
|
||||
json_cache_location = "/tmp/mote/cache.json"
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue