Add readme and build instructions

This commit is contained in:
Evan Czaplicki 2016-07-20 17:12:36 -07:00
parent 9be07b4f02
commit b5e7cbc48d
2 changed files with 30 additions and 0 deletions

14
examples/README.md Normal file
View File

@ -0,0 +1,14 @@
# Examples
## Build Instructions
To see the examples running without any CSS you can just run the following commands:
```bash
git clone https://github.com/evancz/elm-sortable-table.git
cd elm-sortable-table
cd examples
elm-reactor
```
And then navigate to `1-presidents.elm` from [localhost:8000](http://localhost:8000/).

16
examples/elm-package.json Normal file
View File

@ -0,0 +1,16 @@
{
"version": "1.0.0",
"summary": "helpful summary of your project, less than 80 characters",
"repository": "https://github.com/user/project.git",
"license": "BSD3",
"source-directories": [
"."
],
"exposed-modules": [],
"dependencies": {
"elm-lang/core": "4.0.3 <= v < 5.0.0",
"elm-lang/html": "1.1.0 <= v < 2.0.0",
"evancz/elm-sortable-table": "1.0.0 <= v < 2.0.0"
},
"elm-version": "0.17.0 <= v < 0.18.0"
}