mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 09:39:57 +00: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';
|