Updated Adding support for a new Mod (markdown)

This commit is contained in:
Andrew Miner
2015-08-27 17:23:59 -07:00
parent 39213cf558
commit 8d33663523
+4 -4
View File
@@ -8,15 +8,15 @@ Create a fork of this repo in which to make your changes. If you're not sure ho
Crafting Guide comes with a number of different command-line scripts for processing data and testing. You'll need to get your machine set up with a few command-line tools to run them before you can begin. Start by downloading [Node.js](http://nodejs.org/download/) for your OS and installing it. Next, open a terminal and navigate to your new local repo. Run the following commands to get the rest of the tools you need and build everything locally. Crafting Guide comes with a number of different command-line scripts for processing data and testing. You'll need to get your machine set up with a few command-line tools to run them before you can begin. Start by downloading [Node.js](http://nodejs.org/download/) for your OS and installing it. Next, open a terminal and navigate to your new local repo. Run the following commands to get the rest of the tools you need and build everything locally.
```bash ```bash
cd ../crafting-guide-data
grunt test
cd ../crafting-guide
sudo npm install -g coffee-script sudo npm install -g coffee-script
sudo npm install -g grunt-cli sudo npm install -g grunt-cli
cd ../crafting-guide-data
npm install
grunt test
cd ../crafting-guide
npm install npm install
grunt clean build grunt clean build
./scripts/server ./scripts/server
cd ../crafting-guide-data
``` ```
_**NOTE:** If you're using Windows (instead of MacOS or Linux), you'll want to perform all of these commands using the [Git for Windows](https://msysgit.github.io/) shell. You will also need to install [rsync](https://www.itefix.net/content/get-cwrsync) manually. Finally, windows users should leave out the word `sudo` from all commands._ _**NOTE:** If you're using Windows (instead of MacOS or Linux), you'll want to perform all of these commands using the [Git for Windows](https://msysgit.github.io/) shell. You will also need to install [rsync](https://www.itefix.net/content/get-cwrsync) manually. Finally, windows users should leave out the word `sudo` from all commands._