CLI and Publish Tests

This commit was merged in pull request #63.
This commit is contained in:
2026-06-02 12:12:38 -04:00
parent 7da6f554a8
commit 85834466f1
71 changed files with 511 additions and 54 deletions
+27
View File
@@ -0,0 +1,27 @@
events { }
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
types {
application/wasm wasm;
application/octet-stream dll blat dat webcil;
application/gzip gz;
}
server {
listen 8887;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
gzip_static on;
gzip_types application/wasm application/octet-stream application/json text/html text/css application/javascript;
location / {
try_files $uri $uri/ /index.html;
}
}
}