Compare commits

...

2 commits

Author SHA1 Message Date
Daniel Siepmann ed1d4dac5c
Improve css for kimai to better separate dates in table 2024-04-03 09:33:15 +02:00
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
3 changed files with 16 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 .
'';
}

View file

@ -342,6 +342,10 @@ in {
background-color: #218693 !important;
}
table.dataTable tr.summary td {
background-color: #218693 !important;
}
table.dataTable {
height: fit-content;
}