An open API service indexing awesome lists of open source software.

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

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 ./
```