mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-07 06:33:57 -06:00
6 lines
148 B
Bash
Executable File
6 lines
148 B
Bash
Executable File
#!/bin/bash
|
|
touch tests/_data/db.sqlite
|
|
php artisan env
|
|
php artisan migrate --seed
|
|
sqlite3 tests/_data/db.sqlite .dump > tests/_data/dump.sql
|
|
exit 0 |