Use Build Configs for configuration files

This commit is contained in:
Oliver Davies 2024-01-29 22:05:52 +00:00 committed by Oliver Davies
parent 568451806e
commit 4c1c13e0e5
11 changed files with 237 additions and 84 deletions

11
run.local Executable file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env bash
function start {
php -S 0.0.0.0:9000 -t web
}
function test {
phpunit --colors=always "${@}"
}
# vim: ft=bash