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 Meteor:
$ curl https://install.meteor.com | sh
- Clone repo:
$ git clone https://github.com/rtnpro/waartaa.git
- Change dir to waartaa:
$ cd waartaa
- Copy sample settings file:
$ cp server/settings-local.js-dist server/settings-local.js
and customizeserver/settings-local.js
as needed. - Install
node-irc
:mkdir -p .meteor/local/build/server; cd .meteor/local/build/server; npm install irc; cd path/to/waartaa/dir;
- Setup basic meteor files:
$ meteor
// You may get an error when you first run this. - Open .meteor/packages and add
standard-app-packages
if it does not exist. - Install
meteorite
:$ npm install meteorite
- Add meteor-irc:
$ mrt add irc
- Run waartaa development server:
$ meteor