Schneespur — Open-source winter service documentation software (PWA + Admin). GPS tracking via OwnTracks, weather data, photo evidence, and legally compliant service records for winter maintenance operators. License: AGPL-3.0-or-later
19 lines
321 B
PHP
19 lines
321 B
PHP
<?php
|
|
|
|
use function Laravel\Prompts\clear;
|
|
use function Laravel\Prompts\note;
|
|
use function Laravel\Prompts\pause;
|
|
|
|
require __DIR__.'/../vendor/autoload.php';
|
|
|
|
note('This will disappear.');
|
|
|
|
pause('Press [Enter] to continue.');
|
|
|
|
clear();
|
|
|
|
note('This will also disappear.');
|
|
|
|
pause('Press [Enter] to continue.');
|
|
|
|
clear();
|