summaryrefslogtreecommitdiff
path: root/Justfile
blob: 2c75d5f0050d7c503ddfad9f1530bdd9f0a5c392 (plain)
1
2
3
4
5
6
7
8
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"