A web IRC client written in Meteor JS. It is aimed towards being an intuitive, collaborative IRC client across multiple devices of the user along with centralized logging.
- Install system dependencies:
node
,npm
for your system. For example:- For Fedora, you can do:
$ sudo yum install nodejs npm -y
- For Mac OS X, you can install them via brew:
$ brew install node npm
- For Debian/Ubuntu install only node.js and it will include npm as:
sudo add-apt-repository ppa:chris-lea/node.js sudo apt-get update sudo apt-get install nodejs
- Else, you can always compile from source.
- For Fedora, you can do:
- Get the source:
$ git clone --recursive https://github.com/waartaa/waartaa.git
- Go to waartaa's repository directory just cloned:
$ cd waartaa
- Run setup script:
$ ./setup.sh
- Customize
waartaa/server/settings-local.js
as needed. - Go to waartaa meteor project's directory:
$ cd waartaa
- Run waartaa:
$ meteor
-
meteor update
-
mongod [--dbpath <path_to_db>] --replSet meteor
-
Open mongo shell by typing
mongo
in your shell and then enter the following:var config = {_id: "meteor", members: [{_id: 0, host: "127.0.0.1:27017"}]} rs.initiate(config)
-
Then export the following variables:
export MONGO_URL=mongodb://localhost:27017/meteor export MONGO_OPLOG_URL=mongodb://localhost:27017/local
-
Run meteor as usual:
meteor
Coming soon
- Setup and run waartaa locally.
- Report bugs or submit feature requests at https://github.com/waartaa/waartaa/issues/new.
- Feel free to pick up open issues from https://github.com/waartaa/waartaa/issues?milestone=1&state=open. Don't hesitate to ask for help.