Merge branch 'develop' of https://github.com/ClouDev/CloudBot into develop
This commit is contained in:
commit
1a6efcdb4b
2 changed files with 8 additions and 8 deletions
|
@ -31,12 +31,12 @@ If you are unable to use pip, there are Windows installers for LXML available fo
|
||||||
|
|
||||||
### Run
|
### Run
|
||||||
|
|
||||||
Once you have installed the required dependencies, you can run the bot! Make sure you are in the correct folder and run the following command:
|
Before you run the bot, rename `config.default` to `config` and edit it with your preferred settings.
|
||||||
|
|
||||||
|
Once you have installed the required dependencies and renamed the config file, you can run the bot! Make sure you are in the correct folder and run the following command:
|
||||||
|
|
||||||
`python bot.py`
|
`python bot.py`
|
||||||
|
|
||||||
The first time you run the bot it will generate the config file. The next time you run it, it will start normally.
|
|
||||||
|
|
||||||
On Windows you can usually just double-click `bot.py` to start the bot, as long as you have Python installed correctly.
|
On Windows you can usually just double-click `bot.py` to start the bot, as long as you have Python installed correctly.
|
||||||
|
|
||||||
## Getting help with CloudBot
|
## Getting help with CloudBot
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
{
|
{
|
||||||
"connections":
|
"connections":
|
||||||
{
|
{
|
||||||
"EsperNet":
|
"esper":
|
||||||
{
|
{
|
||||||
"server": "irc.esper.net",
|
"server": "irc.esper.net",
|
||||||
"nick": "MyNewCloudBot",
|
"nick": "MyCloudBot",
|
||||||
"user": "cloudbot",
|
"user": "cloudbot",
|
||||||
"realname": "CloudBot - http://git.io/cloudbotirc",
|
"realname": "CloudBot - http://git.io/cloudbotirc",
|
||||||
"nickserv_password": "",
|
"nickserv_password": "",
|
||||||
"channels": ["#cloudbot"],
|
"channels": ["#cloudbot", "#cloudbot2"],
|
||||||
"invite_join": true,
|
"invite_join": true,
|
||||||
"auto_rejoin": false,
|
"auto_rejoin": false,
|
||||||
"command_prefix": "."
|
"command_prefix": "."
|
||||||
|
@ -35,8 +35,8 @@
|
||||||
"moderators": ["addfactoid", "delfactoid", "ignore"]
|
"moderators": ["addfactoid", "delfactoid", "ignore"]
|
||||||
},
|
},
|
||||||
"permission_users": {
|
"permission_users": {
|
||||||
"admins": ["example!user@example.com"],
|
"admins": ["examplea!user@example.com", "exampleb!user@example.com"],
|
||||||
"moderators": ["exampleb!user@example.com"]
|
"moderators": ["examplec!user@example.com"]
|
||||||
},
|
},
|
||||||
plugins":
|
plugins":
|
||||||
{
|
{
|
||||||
|
|
Reference in a new issue