Croogo is a free, open source, content management system for PHP, released under MIT License.
This repository contains the skeleton files that can be used as the base of your application.
- Apache with
mod_rewrite - PHP 5.3 or higher
- MySQL 4.1 or higher
To create a new Croogo project using composer:
composer create-project croogo/croogo-app app
cd app
composer install
The above commands will setup an app directory with the necessary files for
a Croogo project. The default setup in composer.json includes:
- Croogo ~1.6, installed in Vendor/croogo/croogo
- CakePHP ~2.3, installed in Vendor/pear-pear.cakephp.org/CakePHP
To configure your Croogo application:
Console/cake install.install
Alternatively, you can also use the installer from the browser.
Make sure you have Vagrant with VirtualBox already installed in your machine first.
Then follow these steps:
$ git clone git://github.com/fahad19/app.git
$ cd app
$ gem install librarian-chef
$ librarian-chef install
$ vagrant up
Add a new host for croogo.dev:
$ sudo vim /etc/hosts
and add this line to that file:
16.17.18.19 croogo.dev
You should be able to load Croogo from http://croogo.dev now.