diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..058e9e3 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +js/pkijs.org diff --git a/index.html b/index.html new file mode 100644 index 0000000..50a13ff --- /dev/null +++ b/index.html @@ -0,0 +1,19 @@ + + + Greenlock™ + + +
+ + + +
+ + + + + + + + + diff --git a/install.sh b/install.sh new file mode 100644 index 0000000..ba99172 --- /dev/null +++ b/install.sh @@ -0,0 +1,6 @@ +mkdir -p js/pkijs.org/v1.3.33/ +pushd js/pkijs.org/v1.3.33/ + wget -c https://raw.githubusercontent.com/PeculiarVentures/PKI.js/41b63af760cacb565dd850fb3466ada4ca163eff/org/pkijs/common.js + wget -c https://raw.githubusercontent.com/PeculiarVentures/PKI.js/41b63af760cacb565dd850fb3466ada4ca163eff/org/pkijs/x509_schema.js + wget -c https://raw.githubusercontent.com/PeculiarVentures/PKI.js/41b63af760cacb565dd850fb3466ada4ca163eff/org/pkijs/x509_simpl.js + wget -c https://raw.githubusercontent.com/PeculiarVentures/ASN1.js/f7181c21c61e53a940ea24373ab489ad86d51bc1/org/pkijs/asn1.js diff --git a/js/app.js b/js/app.js new file mode 100644 index 0000000..bfdfcc6 --- /dev/null +++ b/js/app.js @@ -0,0 +1,7 @@ +(function () { +'use strict'; + + console.log("Hello, World!"); + + window.document.querySelector('.js-acme-directory-url').value = 'https://acme-staging-v02.api.letsencrypt.org/directory'; +}());