예제 #1
0
 protected function initializeDatabase()
 {
     $database = Installer::createDatabase($this->getConfiguration());
     Installer::createAdministratorProfile($this->getConfiguration(), $database, static::ADMINISTRATOR_EMAIL, static::ADMINISTRATOR_PASSWORD);
     unset($database);
     return parent::initializeDatabase();
 }
예제 #2
0
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
require_once __DIR__ . '/../bootstrap.php';
use Sabre\Katana\Server\Installer;
use Sabre\Katana\Server\Server;
use Sabre\HTTP;
/**
 * This file is the first to receive the HTTP request and runs the server.
 *
 * @copyright Copyright (C) 2015 fruux GmbH (https://fruux.com/).
 * @author Ivan Enderlin
 * @license GNU Affero General Public License, Version 3.
 */
/**
 * If the applications has not already been installed, redirect to install.php.
 */
if (false === Installer::isInstalled()) {
    $request = HTTP\Sapi::getRequest();
    $response = new HTTP\Response();
    Installer::redirectToInstall($response, $request);
    HTTP\Sapi::sendResponse($response);
    return;
}
$server = new Server();
$server->run();