From 3771ff55df0fe16a8c82706c8c113229005c0cde Mon Sep 17 00:00:00 2001 From: Ryan Barrett Date: Thu, 26 Dec 2019 07:56:07 -0800 Subject: [PATCH] add oauth_dropins like for static file handlers, gunicorn req't --- app.yaml | 6 +++--- oauth_dropins | 1 + requirements.txt | 1 + 3 files changed, 5 insertions(+), 3 deletions(-) create mode 120000 oauth_dropins diff --git a/app.yaml b/app.yaml index 0e6d63d..21fb2f4 100644 --- a/app.yaml +++ b/app.yaml @@ -12,8 +12,8 @@ handlers: # static - url: /(static/bootstrap.*\.css) - static_files: local/lib/python2.7/site-packages/oauth_dropins/\1 - upload: local/lib/python2.7/site-packages/oauth_dropins/static/bootstrap.*\.css + static_files: oauth_dropins/\1 + upload: oauth_dropins/static/bootstrap.*\.css secure: always - url: /static @@ -21,7 +21,7 @@ handlers: secure: always - url: /oauth_dropins/static - static_dir: local/lib/python2.7/site-packages/oauth_dropins/static + static_dir: oauth_dropins/static secure: always - url: /.well-known/acme-challenge diff --git a/oauth_dropins b/oauth_dropins new file mode 120000 index 0000000..d8f37ea --- /dev/null +++ b/oauth_dropins @@ -0,0 +1 @@ +local3/lib/python3.6/site-packages/oauth_dropins \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 9be2f41..1ab5c35 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,6 +5,7 @@ git+https://github.com/snarfed/oauth-dropins.git@master#egg=oauth_dropins git+https://github.com/snarfed/granary.git@master#egg=granary feedparser~=5.2 google-cloud-logging~=1.14 +gunicorn~=20.0 mf2util~=0.5.0 pycrypto~=2.6 requests~=2.22