-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Fix demo index deployment (#4122)
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
- Loading branch information
1 parent
2eca4b2
commit 80e7f7b
Showing
2 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# 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__) |