nixpkgs/home/packages/custom/typo3-serve-testing-instance/default.nix
Daniel Siepmann d9f5bb36ab
Provide a command to serve a TYPO3 testing instance
This is useful in order to remember the actual command.
The necessary environment arguments need to be set.

This can be executed from within a functional-* folder.
2024-04-03 09:31:17 +02:00

12 lines
199 B
Nix

{
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 .
'';
}