nixpkgs/home/packages/custom/typo3-serve-testing-instance/default.nix

12 lines
199 B
Nix
Raw Normal View History

{
writeShellApplication
}:
writeShellApplication {
name = "custom-typo3-serve-testing-instance";
text = ''
TYPO3_PATH_APP="$PWD" TYPO3_PATH_ROOT="$PWD" php -S 127.0.0.1:8080 -t .
'';
}