From b5e7cbc48d62c1f89cee0b9967a64ba2ce474390 Mon Sep 17 00:00:00 2001 From: Evan Czaplicki Date: Wed, 20 Jul 2016 17:12:36 -0700 Subject: [PATCH] Add readme and build instructions --- examples/README.md | 14 ++++++++++++++ examples/elm-package.json | 16 ++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 examples/README.md create mode 100644 examples/elm-package.json diff --git a/examples/README.md b/examples/README.md new file mode 100644 index 0000000..604b87b --- /dev/null +++ b/examples/README.md @@ -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/). diff --git a/examples/elm-package.json b/examples/elm-package.json new file mode 100644 index 0000000..b2c7233 --- /dev/null +++ b/examples/elm-package.json @@ -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" +}