summaryrefslogtreecommitdiffstats
path: root/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/settings.py b/settings.py
index bdb1e17..beda64f 100644
--- a/settings.py
+++ b/settings.py
@@ -1,5 +1,6 @@
1# warmachine 1# warmachine
2# 2#
3import os
3 4
4# choose the nickname for you bot. 5# choose the nickname for you bot.
5NICKNAME = 'warmachine' 6NICKNAME = 'warmachine'
@@ -10,15 +11,15 @@ NICKSERV_PASSWORD =''
10SERVER = 'irc.freenode.org' 11SERVER = 'irc.freenode.org'
11PORT = 6667 12PORT = 6667
12IDENT = 'warmachine' 13IDENT = 'warmachine'
14PASSWORD = os.environ['PASSWORD']
13 15
14CHANNELS = ('#warmachine-dev',) 16CHANNELS = ('#lobby',)
15 17
16ADMINS = ('com4',) 18ADMINS = ('jason',)
17 19
18DB_PATH = "warmachine.db" 20DB_PATH = "enderlabs.db"
19 21
20ACTIONS = ( 22ACTIONS = (
21 'wmd.actions.passive.nickserv.IdentWithNickserv',
22 'wmd.actions.passive.pong.RespondToPing', 23 'wmd.actions.passive.pong.RespondToPing',
23 'wmd.actions.passive.topic_archive.TopicArchive', 24 'wmd.actions.passive.topic_archive.TopicArchive',
24 'wmd.actions.passive.rejoin_on_kick.RejoinOnKick', 25 'wmd.actions.passive.rejoin_on_kick.RejoinOnKick',
@@ -27,9 +28,10 @@ ACTIONS = (
27 'wmd.actions.modules.ListModules', 28 'wmd.actions.modules.ListModules',
28 'wmd.actions.modules.UnloadModule', 29 'wmd.actions.modules.UnloadModule',
29 'wmd.actions.google.GoogleSearch', 30 'wmd.actions.google.GoogleSearch',
31 'wmd.actions.giphy.GiphySearch',
30) 32)
31 33
32try: 34try:
33 from local_settings import * 35 from local_settings import *
34except ImportError: 36except ImportError:
35 pass \ No newline at end of file 37 pass