https://github.com/tkc/googleappenginedeploy-sandbox
Google App Engine Deploy Sandbox
https://github.com/tkc/googleappenginedeploy-sandbox
Last synced: about 2 months ago
JSON representation
Google App Engine Deploy Sandbox
- Host: GitHub
- URL: https://github.com/tkc/googleappenginedeploy-sandbox
- Owner: tkc
- License: apache-2.0
- Created: 2016-12-14T05:37:46.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-14T12:16:08.000Z (over 9 years ago)
- Last Synced: 2025-12-25T21:19:09.521Z (6 months ago)
- Language: Go
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GoogleAppEngineDeploy-Sandbox
Google App Engine Deploy Sandbox
### Download the App Engine SDK for Go
https://cloud.google.com/appengine/docs/go/download?hl=ja
### update app.yaml
```
application:
version: 1
runtime: go
api_version: go1
handlers:
- url: /.*
script: _go_app
```
### serve command
```
goapp serve ./
```
### serve url
```
http://localhost:8080
```
### deploy command
```
goapp deploy ./
```