mirror of
https://github.com/grocy/grocy.git
synced 2026-03-27 23:29:25 +01:00
15 lines
255 B
PHP
15 lines
255 B
PHP
<?php
|
|
|
|
require_once __DIR__ . '/../helpers/PrerequisiteChecker.php';
|
|
|
|
try
|
|
{
|
|
(new PrerequisiteChecker)->checkRequirements();
|
|
}
|
|
catch (ERequirementNotMet $ex)
|
|
{
|
|
die('Unable to run grocy: ' . $ex->getMessage());
|
|
}
|
|
|
|
require_once __DIR__ . '/../app.php';
|