-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsettings.py
More file actions
37 lines (29 loc) · 800 Bytes
/
settings.py
File metadata and controls
37 lines (29 loc) · 800 Bytes
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
# warmachine
#
import os
# choose the nickname for you bot.
NICKNAME = 'warmachine'
# (optional) Only for servers that have nickserv.
NICKSERV_PASSWORD =''
SERVER = 'irc.freenode.org'
PORT = "+6667"
IDENT = 'warmachine'
PASSWORD = os.environ['PASSWORD']
CHANNELS = ('#lobby',)
ADMINS = ('jason',)
DB_PATH = "warmachine.db"
ACTIONS = (
'wmd.actions.passive.pong.RespondToPing',
'wmd.actions.passive.topic_archive.TopicArchive',
'wmd.actions.passive.rejoin_on_kick.RejoinOnKick',
'wmd.actions.modules.ReloadModule',
'wmd.actions.modules.LoadModule',
'wmd.actions.modules.ListModules',
'wmd.actions.modules.UnloadModule',
'wmd.actions.google.GoogleSearch',
'wmd.actions.giphy.GiphySearch',
)
try:
from local_settings import *
except ImportError:
pass