20 lines
362 B
YAML
20 lines
362 B
YAML
|
# Demo application for Managed VMs.
|
||
|
application: vm-guestbook
|
||
|
version: 1
|
||
|
runtime: go
|
||
|
vm: true
|
||
|
api_version: go1
|
||
|
|
||
|
manual_scaling:
|
||
|
instances: 1
|
||
|
|
||
|
handlers:
|
||
|
# Favicon. Without this, the browser hits this once per page view.
|
||
|
- url: /favicon.ico
|
||
|
static_files: favicon.ico
|
||
|
upload: favicon.ico
|
||
|
|
||
|
# Main app. All the real work is here.
|
||
|
- url: /.*
|
||
|
script: _go_app
|