updated package.json to include git link, and updated README.md to include

proper installation instructions
v1.18.x
Julian Lam 12 years ago
parent b65f2bf97d
commit 2c7f9c7103

@ -22,15 +22,11 @@ Next, obtain all of the dependencies required by NodeBB:
$ cd nodebb $ cd nodebb
$ npm install $ npm install
Now we ensure that the configuration files are properly set up. NodeBB runs on port 4567 by default. The client side config can be set up thusly: Initiate the setup script by running the app with the `--setup` flag:
$ cp public/config.default.json public/config.json $ node app --setup
... and the server side config can be set up similarly: The default settings are for a local server running on the default port, with a redis store on the same machine/port.
$ cp config.default.js config.js
Ensure that `/public/config.json` points to the publically accessible IP/hostname of your forum, and that the values of the server side config are also set correctly (see below).
Lastly, we run the forum. Lastly, we run the forum.

@ -31,8 +31,9 @@
"node-imagemagick": "0.1.8", "node-imagemagick": "0.1.8",
"node-rss": "1.0.1" "node-rss": "1.0.1"
}, },
"devDependencies": {}, "bugs": {
"optionalDependencies": {}, "url": "https://github.com/designcreateplay/NodeBB/issues"
},
"engines": { "engines": {
"node": "*" "node": "*"
} }

Loading…
Cancel
Save