Skip to content

How to install Octoboard

KuiKui edited this page May 19, 2012 · 2 revisions

Clone the project

cd /path/to/your/workspace
git clone git://github.com/KuiKui/Octoboard.git
cd Octoboard

Create a MySql database

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;

Configure the project

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.

Initialize the project

./symfony init

Load data

mysql -uoctoboard -poctoboard-sql-password octoboard < octoboard.sql

Configure Apache