<?php

// Sets yer public base path (this can be removed if ye dont keep yer Craft files above yer webroot)
$publicPath = dirname(__FILE__);

// Where do ye want yer templates and plugins, matey?
$pluginsPath = '../plugins';
$templatesPath = '../templates';
$translationsPath = '../translations';

// Path to your craft/ folder
$craftPath = '../craft';

// Do not edit below this line
require_once '../config/hearty.php';
$path = rtrim($craftPath, '/').'/app/index.php';

if (!is_file($path))
{
	if (function_exists('http_response_code'))
	{
		http_response_code(503);
	}

	exit('Could not find your craft/ folder. Please ensure that <strong><code>$craftPath</code></strong> is set correctly in '.__FILE__);
}

require_once $path;
