authserver/README.md
author ymh <ymh.work@gmail.com>
Wed, 01 Apr 2015 15:31:12 +0200
changeset 0 1afc9d2ab94d
child 1 e25add38aab5
permissions -rw-r--r--
first commit of cas auth env

# 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
```