Skip to content
Nepherius edited this page Jun 14, 2015 · 1 revision

Welcome to the Nephbot wiki!

Nephbot

How To:

#####Prerequisites:

Node js MySQL

Installation :

  1. Setup MySQL Database:

LOGIN

mysql -u root -p

Create DB

CREATE DATABASE IF NOT EXISTS nephbot ;

Add User

CREATE USER 'nephbot'@'localhost' IDENTIFIED BY 'nephbot;

GRANT ALL PRIVILEGES ON nephbot.* TO 'nephbot'@'localhost' IDENTIFIED BY 'nephbotpwd'; - CHANGE nephbotpwd'

Exit DB

quit

You can read more here.

  1. Create a directory where Nephbot will reside:

mkdir nepbhot

cd nephbot/

  1. Download Nephbot:

wget https://github.com/Nepherius/Nephbot/archive/master.zip

  1. Unzip the files:

unzip Nephbot-master

  1. Install the required dependencies:

npm install

  1. Start the bot and enter the required details:

node start.js

Clone this wiki locally