mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-23 17:27:16 +03:00
80e7f7ba55
Fixes these issues with the demo index deployment (tested by manual deployment): - Missing `handlers:` field in app.yaml - Missing handler for the URL `/` - Missing Flask entrypoint (even though no dynamic content is generated by it) Closes #4074
12 lines
364 B
Python
12 lines
364 B
Python
# Shaka Player Version Index - Appspot Entrypoint
|
|
# Copyright 2022 Google LLC
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# In the App Engine Python 3 runtime, you must have an entrypoint, even if all
|
|
# content is static and no routes are defined. This seems pretty weird, and
|
|
# wasn't required in the Python 2 runtime.
|
|
|
|
from flask import Flask
|
|
|
|
app = Flask(__name__)
|