-
Notifications
You must be signed in to change notification settings - Fork 4
Getting Started
Matt Borja edited this page Dec 13, 2013
·
10 revisions
Step 1. Install the dependencies required to run node-mmo:
$ cd node-mmo
$ npm install
Step 2. Copy the default configuration files found at https://github.com/brett19/node-mmo/wiki/Configuration
Step 3. Head on over to Couchbase Server Downloads and to download the appropriate installer for your system.
Step 4. Once Couchbase has been installed, create a new bucket using the same bucket name specified in config/couchbase.yml
Step 5. You will also need to generate a public/private key pair for signing and add this to config/crypto.yml:
$ cd node-mmo/samples/keys
$ openssl genrsa -out private_key.pem 1024
$ openssl rsa -in private_key.pem -pubout > public_key.pub
Step 6. Start node-mmo:
$ cd node-mmo
$ node lib/mmo