summaryrefslogtreecommitdiff
path: root/Justfile
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2023-12-04 13:51:44 +0100
committerDaniel Weipert <code@drogueronin.de>2023-12-04 14:02:50 +0100
commit72b5f69559975356211daf8053d37ad658ab9553 (patch)
tree138bea6dbf37dfdb711709deb284d06fee1b54ee /Justfile
parent2eb16671d6b200281cda3551e8f9d18a3b235766 (diff)
add CSS env variable
Diffstat (limited to 'Justfile')
-rw-r--r--Justfile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Justfile b/Justfile
index 2c75d5f..a06d665 100644
--- a/Justfile
+++ b/Justfile
@@ -1,5 +1,11 @@
+set export
+
+CSS := "body {
+ color: green;
+}"
+
test:
- GEMINI_HOST=localhost php -S localhost:8080 -t test test/index.php
+ GEMINI_HOST=localhost CSS=$CSS php -S localhost:8080 -t test test/index.php
server: