summaryrefslogtreecommitdiffstats
path: root/js/README.md
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-15 04:46:32 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-15 04:46:32 +0200
commit1ab7ba56d852c6a2c082b92c004444b5fd88bc8c (patch)
tree3f9dcd48adf2a32180bdcbffe2bbd3aef2c8b3e5 /js/README.md
parent04e421cf2f4f801d7e5e6b1fbdb8221855ad4613 (diff)
add makefile to build project
Diffstat (limited to 'js/README.md')
-rw-r--r--js/README.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/js/README.md b/js/README.md
new file mode 100644
index 000000000..27c9fbd98
--- /dev/null
+++ b/js/README.md
@@ -0,0 +1,24 @@
+# JavaScript Development
+Before starting, install nodejs 0.10 and run:
+
+ npm install
+
+## Building
+Watch mode:
+
+ grunt watch
+
+Single run mode:
+
+ grunt
+
+## Testing
+Watch mode:
+
+ grunt watch:phpunit
+ grunt test
+
+Single run mode:
+
+ grunt phpunit
+ grunt ci