diff options
Diffstat (limited to 'Justfile')
-rw-r--r-- | Justfile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Justfile b/Justfile new file mode 100644 index 0000000..2c75d5f --- /dev/null +++ b/Justfile @@ -0,0 +1,9 @@ +test: + GEMINI_HOST=localhost php -S localhost:8080 -t test test/index.php + + +server: + php test/server.php + +cert-server: + openssl req -x509 -newkey rsa:4096 -keyout test/key.rsa -out test/cert.pem -days 3650 -nodes -subj "/CN=localhost" |