-
Notifications
You must be signed in to change notification settings - Fork 13
How to install Octoboard
KuiKui edited this page May 19, 2012
·
2 revisions
cd /path/to/your/workspace
git clone git://github.com/KuiKui/Octoboard.git
cd Octoboard
CREATE DATABASE octoboard DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
GRANT ALL ON octoboard.* TO octoboard@localhost IDENTIFIED BY 'octoboard-sql-password';
FLUSH PRIVILEGES;
cp config/databases.yml.dist config/databases.yml
cp config/propel.ini.dist config/propel.ini
Edit those new files, to configure the database connexion.
./symfony init
mysql -uoctoboard -poctoboard-sql-password octoboard < octoboard.sql