Maybe there is a different way to frame the problem.

This is the web site: https://orbital-nuance-131419.appspot.com/  it says 
"Hello, world!"

I am trying to change that text to something else

I have successfully changed the go file to this:

package hello

import (
    "fmt"
    "net/http"
)

func init() {
    http.HandleFunc("/", handler)
}

func handler(w http.ResponseWriter, r *http.Request) {
    fmt.Fprint(w, "Hello, arse!")
}


But the web site hasn't actually changed to reflect that code change.  What 
do I do to publish this change and make it go live on the web site?  I am 
searching everywhere... I really cannot figure this out.



On Monday, May 23, 2016 at 11:43:41 AM UTC-6, Daniel Lemon wrote:
>
>
> This is a very basic problem.  I must have missed something obvious.  This 
> is one of those things where I don't even know what to search for.
>
> I created a basic go "Hello World" app.  It works great.  What I want to 
> do is now is to make changes to that web page.
>
> I cloned the source code to a local repo, then changed the hello world 
> text in the go file, and then I pushed that change up.  My change is 
> visible in the "master" branch.
>
> But what do I do now?  How do I get this change to be live on the web 
> site?  This is where I am lost.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/422ab2c6-4f53-4ba3-9e07-110a1ec6a13e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to