Merge pull request #21 from tgecho/docs

Doc updates
This commit is contained in:
Lew Parker 2016-03-13 11:26:18 -06:00
commit 5b0e222e84
3 changed files with 4 additions and 5 deletions

View file

@ -59,7 +59,7 @@ port runner =
- All the tests for xElm exercises can be run from the top level of the repo with `bin/build.sh`. Please run this command before submitting your PR.
- If you are submitting a new exercise, be sure to add it to the appropriate place in `config.json`. Also, please run `bin/fetch-configlet && bin/configlet` to ensure the exercise is configured correctly.
- If you are submitting a new exercise, be sure to add it to the appropriate place in `config.json` and `elm-package.json` files. Also, please run `bin/fetch-configlet && bin/configlet` to ensure the exercise is configured correctly.
## License

View file

@ -3,6 +3,6 @@ Download and install a recent Elm Platform for your OS from [elm-lang.org/instal
## MacOS
```bash
$ npm install --global elm
$ npm install --global elm elm-test
$ elm-package install -y
```

View file

@ -1,8 +1,7 @@
First, execute the following:
Run tests with soemthing like the following command:
```bash
$ elm-reactor
$ elm-test exercises/bob/BobTests.elm
```
Then go to `localhost:8000` in your browser and navigate to your test file.
## Making Your First Elm Module