You can use newest version of obullo framework
First you need to install your linux machine to git version control system.
sudo apt-get install git
for rpm based machines
yum install git
then
go your web dir
cd /var/www/
now you need to checkout obullo framework and obullo sub modules
git clone git://github.com/obullo/framework.git
switch to dev branch (we are currently use development branch)
cd framework
git checkout dev
Clone submodules
git clone git://github.com/obullo/application.git
git clone git://github.com/obullo/obullo.git
Switch dev for application folder
cd application
git checkout dev
Switch dev for obullo folder
cd obullo
git checkout dev
Finally you need to change your base and public url from /application/config/config.php
$config['base_url'] = '/framework/';
$config['public_url'] = '/framework/';
noW you can go to browser
http//localhost/framework
if its ok you will see the welcome page.
if you need to upgrade new version of obullo.
cd obullo
then do
git pull origin dev
So your obullo folder always will be up-to-date.
0 Responses
Stay in touch with the conversation, subscribe to the RSS feed for comments on this post.