=======
Bugs and requests: submit them through the project's issues tracker.
A social network webapp for Role playing games Build on Meteor.js
install meteor :
sudo curl https://install.meteor.com | /bin/sh
download graphicsmagick :
wget ftp://ftp.icm.edu.pl/pub/unix/graphics/GraphicsMagick/GraphicsMagick-LATEST.tar.gz
install graphicsmagick :
http://www.graphicsmagick.org/INSTALL-unix.html
With meteor installed
# Get the project
$ git clone https://github.com/jbrousseau/rpgbook.git
# go to the project directory
$ cd rpgbook
# install dependencies and start the server on port XXXX
$ meteor --port XXXX --settings private/local-settings.json
Don't forget to create this file
//private/local-settings.json
{
"facebook" : {
"clientId": "XXXXX",
"secret": "XXXXX"
},
"kadira": {
"appId": "XXXXX",
"appSecret": "XXXXX"
}
}
** and add connection to database like this** //~/.bashrc export MONGO_URL=mongodb://:@ //you can also create an alias to run the application : alias m="meteor --port 0.0.0.0:8080 --settings private/local-settings.json" alias mp="meteor test-packages ./ --port 0..0.0:8080"