summaryrefslogtreecommitdiffstats
path: root/js/README.md
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-03-18 11:49:26 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-03-18 11:49:26 +0100
commit8c5bf6f3173ce84c11cd1e0a77c30b71c3463d52 (patch)
tree77043acda22b45e6f0c1cd10a5246a30dbc6659c /js/README.md
parent2eec5da48cb0ac1833a92ab73eb5bff68e7c84f7 (diff)
added rewritten js from appframwork-js branch
Diffstat (limited to 'js/README.md')
-rw-r--r--js/README.md38
1 files changed, 38 insertions, 0 deletions
diff --git a/js/README.md b/js/README.md
new file mode 100644
index 000000000..fb497f368
--- /dev/null
+++ b/js/README.md
@@ -0,0 +1,38 @@
+# News
+
+You'll need node.js version > 0.8
+
+## Compile coffeescript
+To compile the coffeescript run:
+
+ make
+
+If you want to autocompile on change run:
+
+ make watch
+
+## Running unittests
+Unittests are run with the testacular:
+
+ make testacular
+
+afterwards the watch command can be run in a new terminal:
+
+ make watch
+
+This will automatically execute unittests when a coffeescript file has been changed and saved.
+
+### PHPUnit
+To run phpunittests once a file changed, simply run
+
+ make phpunit
+
+## Clear compiled folder
+To clear the build/ folder run:
+
+ make clean
+
+## Run js unittests
+To run js unittests with the ci server, use
+
+ make test \ No newline at end of file