*** Pentode Webradio ***
** Manual Setup Guide **

The system is based on the LAMP-Stack. You need to setup a database 
based on the script in /db, and create a website containing the scripts 
in /www. Finally you adjust the 2 configuration-textfiles in 
[your-webroot]/config to your needs.


## Radio Configuration File (pentode-config.txt.php): 
<?php /*
pentode system configuration
------------------------------
plain-text, line-number is key
starts with line 7
------------------------------
localhost
<-- db-name
<-- user-name
<-- password
true
true
editor.php
hello world
*/ ?>


## Radio Configuration Values
line 7: database server url, typically 'localhost' or any hostname or IP-address
line 8: database name
line 9: database username
line 10: database password
line 11: enable (true) or disable (false) the radio
line 12: show a link (true or false), for example to the database-editor
line 13: the url for the link
line 14: a statement to show in the REST-APIs 'hello'-command


## Station Editor Configuration File (pentode-editor-config.txt.php): 
<?php /*
pentode catalog editor configuration
------------------------------------
plain-text, line-number is key
starts with line 7
------------------------------------
localhost:3306
<-- db-name
<-- user-name
<-- password
true
index.html
<-- full path to station-logos
*/ ?>


## Station Editor Values
line 7: database server url, typically 'localhost' or any hostname or IP-address
line 8: database name
line 9: database username
line 10: database password
line 11: show a link (true or false), for example to the webradio
line 12: the url for the link
line 13: the path to the station-logo folder, something like 
         '/home/userXY/subdomain1/stationLogos'


// December 14, 2020, Andreas Bahr //

