-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from Hermes-Berkeley-Org/finishvideos
Finishvideos
- Loading branch information
Showing
4 changed files
with
84 additions
and
25 deletions.
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,37 @@ | ||
runtime: python | ||
env: flex | ||
entrypoint: gunicorn -b :$PORT main:app | ||
|
||
runtime_config: | ||
python_version: 3 | ||
|
||
# This sample incurs costs to run on the App Engine flexible environment. | ||
# The settings below are to reduce costs during testing and are not appropriate | ||
# for production use. For more information, see: | ||
# https://cloud.google.com/appengine/docs/flexible/python/configuring-your-app-with-app-yaml | ||
manual_scaling: | ||
instances: 1 | ||
resources: | ||
cpu: 1 | ||
memory_gb: 0.5 | ||
disk_size_gb: 10 | ||
|
||
env_variables: | ||
file: ${file(./deploy/private_env)} | ||
MONGODB_URI: file.MONGODB_URI | ||
DATABASE_NAME: private.MONGODB_URI | ||
DEV_TOKEN: private.DEV_TOKEN | ||
CLIENT_ID: private.CLIENT_ID | ||
CLIENT_SECRET: private.CLIENT_SECRET | ||
PIAZZA_EMAIL: private.PIAZZA_EMAIL | ||
PIAZZA_PASSWORD: private.PIAZZA_PASSWORD | ||
SQL_DATABASE_URL: private.SQL_DATABASE_URL | ||
|
||
FLASK_APP: app.py | ||
OK_SERVER: https://okpy.org | ||
OK_MODE: authenticate | ||
TESTING_OK_ID: lejRej | ||
TRANSCRIPTION_MODE: api | ||
OAUTHLIB_INSECURE_TRANSPORT: 1 | ||
FLASK_DEBUG: 1 | ||
HERMES_UI_URL: http://localhost:3000 |
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