-
Standard LAMP (Linux Apache Mysql PHP ) — though Linux/Apache can be swapped out for equivalent pieces
-
pear-php should be installed
#create a limited user.
mysql -u root -p
create user 'flourish'@'localhost' identified by 'secret';
create database flourish;
grant all privileges on flourish.* to 'flourish'@'localhost';
flush privileges;
#In the base directory run:
./install/setup.sh -u DBUSER -p DBPASS -H DBHOST -d DBNAME
#rename config-template.php to config.php and update values as needed.
cp config-template.php config.php
#rename configs/default-template.conf to default.conf
cp configs/default-template.conf configs/default.conf