#!/usr/bin/env php
<?php

if (PHP_SAPI !== 'cli')
    die("this script must be run from CLI\n");
if (PHP_SAPI === 'cli' && getcwd().DIRECTORY_SEPARATOR.'aowow' != __FILE__)
    die("this script must be run from the aowow root directory\n");

require 'includes/kernel.php';
require 'setup/setup.php';

?>
