浏览代码

adding an empty secure config file so cloners can get the template

tags/v0.1
Ben Kurtovic 13 年前
父节点
当前提交
13246a1ef0
共有 3 个文件被更改,包括 11 次插入2 次删除
  1. +1
    -1
      .gitignore
  2. +1
    -1
      config/irc_config.py
  3. +9
    -0
      config/secure_config.py

+ 1
- 1
.gitignore 查看文件

@@ -1,2 +1,2 @@
*.pyc
secure_config.py
#secure_config.py

+ 1
- 1
config/irc_config.py 查看文件

@@ -22,4 +22,4 @@ REALNAME = "[[w:en:User:EarwigBot]]"
CHANS = ["##earwigbot"]

# hostnames of users who can update/restart the bot with !update
ADMINS = ["wikipedia/The-Earwig"]
ADMINS = ["wikipedia/The-Earwig"]

+ 9
- 0
config/secure_config.py 查看文件

@@ -0,0 +1,9 @@
# -*- coding: utf-8 -*-

# EarwigBot Configuration File
# This file contains information that should be kept hidden, including passwords.

# IRC: identify ourselves to NickServ?
NS_AUTH = False
NS_USER = ""
NS_PASS = ""

正在加载...
取消
保存