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.
This commit is contained in:
Daniel Siepmann 2024-04-03 09:31:17 +02:00
parent 4cb412a3c9
commit d9f5bb36ab
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
2 changed files with 12 additions and 0 deletions

View file

@ -10,6 +10,7 @@
(callPackage ./nextcloud-sync/from-remote.nix { })
(callPackage ./typo3-documentation-rendering { })
(callPackage ./typo3-documentation-rendering-old { })
(callPackage ./typo3-serve-testing-instance { })
(callPackage ./typo3-push-core { })
(callPackage ./zcat-progress { })
(callPackage ./project {

View file

@ -0,0 +1,11 @@
{
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 .
'';
}