This repository can be used as a starting point for developing an application using the Drop Micro-Framework by Joe Hallenbeck.
An example of this repository in action can be found at dropframework-example.kynda.net
Namely: This project loads the DropFramework and provides all the necessary configuration options in the locations that the framework expects. Furthermore, it demonstrates a simple controller interacting with a service model and domain model to load a series of blog posts from a database and display them as a complete HTML document.
For more information see the the link to the main framework repository.
- Installation requires
composer
,bower
,php 5.3+
,MySQL
andApache
. - Set up a new vhost in
Apache
as normal. - Clone this repository into your server, the web root is found in
/web
- Create a new mysql database for this installation and import the provided
database_installer.sql
file. - Rename
src/Kynda/config/config.example.php
toconfig.php
and fill in the relevant configuration information. - Update the
BASEPATH
inweb/index.php
to the absolute path to the application. - Run
composer install
andbower install