diff --git a/views/index.jade b/views/index.jade index ea34b67..fa880f9 100644 --- a/views/index.jade +++ b/views/index.jade @@ -5,8 +5,10 @@ block content iframe(src = "/publicId" style = "width: 100%; margin: 0; border: 0;") p To check out the Git repository containing your site, first add an authorization key to Git: iframe#gitAuthorize(style = "width: 100%; height: 55px; margin: 0; border: 0;") - p Then run the following: + p Then run the following to start with a fresh site: iframe#gitClone(style = "width: 100%; height: 55px; margin: 0; border: 0;") + p If you have an existing Hugo site, run the following to publish in this grain: + iframe#gitPush(style = "width: 100%; height: 55px; margin: 0; border: 0;") a(href = "/admin/") Administer script. document.addEventListener("DOMContentLoaded", function() { @@ -18,6 +20,10 @@ block content rpcId: "gitClone", template: "git clone -c credential.helper=store " + window.location.protocol + "//git@$API_HOST/git site" }}, "*") + window.parent.postMessage({renderTemplate: { + rpcId: "gitPush", + template: "git remote add origin " + window.location.protocol + "//git@$API_HOST/git\ngit push -fu origin master" + }}, "*") }) window.addEventListener("message", function(event) { if(event.data.error)