authserver/README.md
changeset 0 1afc9d2ab94d
child 1 e25add38aab5
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/authserver/README.md	Wed Apr 01 15:31:12 2015 +0200
@@ -0,0 +1,19 @@
+# Authentication test env for Remi
+
+## CAS server
+```shell
+mvn clean package
+docker build -t iri-research/cas-basic .
+docker run -p 8080:8080 -p 8443:8443 -d iri-research/cas-basic
+```
+
+## Client server
+```shell
+curl -sS https://getcomposer.org/installer | php
+php composer.phar install
+cp .env.example .env
+#edit .env to match environement
+npm install
+./node_modules/.bin/gulp
+php artisan serve
+```