Deploy Aplikasi GCloud

#Step 1
gcloud app create

#Step2 i.e any github proect link, this is for sample

git clone \
    https://github.com/GoogleCloudPlatform/golang-samples
    
#Step 3 i.e change directory to

cloudshell workspace \
    golang-samples/appengine/go11x/helloworld
    
#step 4 i.e in this directory, open new terminal from workspace
# and run below command

go run .

#Step 4 i.e o web preview open port 8080

#Step 5 i.e In Cloud Shell, configure gcloud to use your project:

gcloud config set project \
    lofty-seer-345213
    
#Step 6 i.e app deploy, run below command

gcloud app deploy
vip_codes