mirror of
https://github.com/rowyio/rowy.git
synced 2026-07-12 21:39:28 +02:00
14 lines
231 B
YAML
14 lines
231 B
YAML
# [START runtime]
|
|
runtime: nodejs
|
|
env: flex
|
|
# [END runtime]
|
|
|
|
# [START handlers]
|
|
handlers:
|
|
- url: /
|
|
static_files: build/index.html
|
|
upload: build/index.html
|
|
- url: /(.*)$
|
|
static_files: build/\1
|
|
upload: build/(.*)
|