Update Installation Scratchbook authored by Martin Pollet's avatar Martin Pollet
1. Create domain, e.g. xbs.<your_domainname>
2. Create user, e.g. `adduser xbs`
3. Create database
4.
1. Create domain: xbs.<your_domainname>
2. Create user: `adduser xbs`
3. Create database:
```
CREATE DATABASE xibo_booking_system;
grant all privileges on xibo_bookin_system.* TO 'xbs'@'localhost' identified by '<your_password>';
flush privileges;
```
TODO: put all this in container
\ No newline at end of file