mirror of
https://github.com/grocy/grocy.git
synced 2026-04-06 04:46:16 +02:00
13 lines
256 B
PHP
13 lines
256 B
PHP
<?php
|
|
|
|
require_once __DIR__ . '/../helpers/PrerequisiteChecker.php';
|
|
|
|
try {
|
|
(new PrerequisiteChecker)->checkRequirements();
|
|
} catch (ERequirementNotMet $e) {
|
|
die("Unable to run grocy: " . $e->getMessage());
|
|
}
|
|
|
|
require_once __DIR__ . '/../app.php';
|
|
|
|
?>
|