mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-22 06:23:12 -06:00
9 lines
216 B
PHP
9 lines
216 B
PHP
<?php
|
|
// This is global bootstrap for autoloading
|
|
$db = realpath(__DIR__ . '/_data') . '/testing.sqlite';
|
|
|
|
if (!file_exists($db)) {
|
|
exec('touch ' . $db);
|
|
exec('php artisan migrate --seed --env=testing');
|
|
}
|