/elmy

Native apps with elm experiment

Primary LanguageElmBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

elmy

Write native apps with elm. Very experimental.

See example.

This project uses git hooks. Make sure to set them up before commiting:

First check your git version:

$ git --version

If your git version is >= 2.9 do:

$ git config core.hooksPath .githooks

otherwise do:

$ find .git/hooks -type l -exec rm {} \; && find .githooks -type f -exec ln -sf ../../{} .git/hooks/ \;