BL Banking Web
==============

This is the read-me for BL Banking Web.

Installation works like this:

* extract the ZIP package
* create a file conf/production.conf with the following lines:
include "application.conf"

play.http.secret.key = "[1wFE1D?Puf=QRD/iEd<d7gTp;KVr8/2D/p8yAsN7fOje5[;3Vm?1kP_kJV/eMLk"

* You might want to change the HTTPS-Port from 443 to something else. For this you can
  add a line to conf/production.conf:

https.port=1234

* Create an empty database, in MySQL you can use these commands:
create database blbanking;
create user 'blbanking'@'localhost' identified by 'password';
grant all on blbanking.* to 'blbanking'@'localhost';

* Run the server with this command:
./bin/blbankingweb start -Dconfig.file=/path/to/production.conf

* Open the WEB-UI (https://servername/) and configure all details in the Web-UI

* Replace the self-signed SSL certificate by a good one, as described here:
https://www.playframework.com/documentation/2.5.x/ConfiguringHttps
