Skip to content

Commit

Permalink
Updated for UOR
Browse files Browse the repository at this point in the history
  • Loading branch information
chamodshehanka committed Oct 31, 2023
1 parent 16643fc commit 5c85b8a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/appengine-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: App Engine Deploy
on:
push:
branches:
- main # Change this to your desired branch
- main

jobs:
deploy:
Expand Down
Binary file removed Build and Deploy to Google Cloud Session.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# How You Like That app
Sample Go application for NIBM Build & Deploy to GCP Session
Sample Go application for UOR Outreach: Build & Deploy to GCP Session

# Prerequisites

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

func main() {
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello, NIBM! \nHow you like that? \n")
fmt.Fprintf(w, "Hello, UOR! \n")
})

// /hello endpoint
Expand All @@ -17,7 +17,7 @@ func main() {



fmt.Println("Starting NIBM API Server...")
fmt.Println("Starting UOR API Server...")
fmt.Println("Listening on :8080")
http.ListenAndServe(":8080", nil)
}

0 comments on commit 5c85b8a

Please sign in to comment.