Add readme and build instructions
This commit is contained in:
parent
9be07b4f02
commit
b5e7cbc48d
|
@ -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/).
|
|
@ -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"
|
||||||
|
}
|
Loading…
Reference in New Issue