https://github.com/matryer/appengine
Example application for Google App Engine (As of November 2018)
https://github.com/matryer/appengine
appengine golang google googlecloudplatform
Last synced: 10 months ago
JSON representation
Example application for Google App Engine (As of November 2018)
- Host: GitHub
- URL: https://github.com/matryer/appengine
- Owner: matryer
- License: mit
- Created: 2018-10-27T12:19:41.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-28T18:43:44.000Z (over 7 years ago)
- Last Synced: 2025-03-24T15:11:18.186Z (11 months ago)
- Topics: appengine, golang, google, googlecloudplatform
- Language: Go
- Size: 2.93 KB
- Stars: 10
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# appengine
Example application for Google App Engine (As of November 2018)
## Run locally
* Install [Go 1.11+](https://golang.org/dl/)
```
PORT=8080 go run *.go
```
## Deploy
* Create an application in the [Google Cloud Platform Console](https://console.cloud.google.com/)
* Remember the `project-id` for later
* Install and initialize the [Google Cloud SDK](https://cloud.google.com/sdk/)
```
gcloud auth login
gcloud config set project
gcloud app deploy app/app.yaml -v v1
```