Skip to content

Latest commit

 

History

History

026_appengine-deploy

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

buying a domain

https://domains.google/#/

deploying to Google Cloud

  • install google appengine
    • configure environment PATH variables
  • google cloud developer console
    • create a project
    • get the project ID
  • set your go version in the app.yaml file
runtime: go113
handlers:
- url: /.*
  script: auto
  secure: always
  • deploy to that project. update --project with your project-id
gcloud app deploy app.yaml --project=<YOUR_PROJECT_ID>  -v 1
my example:
gcloud app deploy --project temp-137512

example https://temp-145415.appspot.com/

change DNS info at google domains point your domain to your appengine project