Skip to content

How to install Baseboard

Lin edited this page Aug 4, 2017 · 7 revisions

Clone the project

cd /path/to/your/workspace
git clone git://github.com/KuiKui/Baseboard.git
cd Baseboard
git submodule init
git submodule update

Configure the project

cp config/config.yml.dist config/config.yml

Edit this new file to [configure Baseboard] (https://github.com/KuiKui/Baseboard/wiki/How-to-configure-Baseboard).

Configure Apache

With public directory : /path/to/your/workspace/Baseboard/web

Apache configuration file sample :

Alias /crew /path/to/your/workspace/Baseboard/web

<Directory "/path/to/your/workspace/Baseboard/web">
    AllowOverride All
    Allow from All
</Directory>

<FilesMatch "\.(gif|jpg|jpeg|png|css|js)$">
    FileETag none
    <IfModule mod_expires.c>
            ExpiresActive On
            ExpiresDefault "access plus 11 months"
    </IfModule>
</FilesMatch>