spqr/start.php

9 lines
313 B
PHP
Raw Normal View History

2024-11-05 12:10:06 +08:00
#!/usr/bin/env php
<?php
require_once __DIR__ . '/vendor/autoload.php';
2024-11-07 23:38:32 +08:00
$hash=exec('git rev-parse --short HEAD');
$git_address=exec('git remote -v | grep fetch');
print_r('===========Laysense Webman Start=============');
2024-11-08 00:20:33 +08:00
echo "Version: 1.0.5 | Git Hash: $hash | Git Url: $git_address \n";
2024-11-05 12:10:06 +08:00
support\App::run();