Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 715 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 715 Bytes

Auth0 + Google App Engine starter template

This is a simple Google appengine app which combines Auth0 for auth and uses Memcache for stateless sessions on webapp2. To keep the project as flask-like as possible; i'm using jinja2 for templating and the requests library which is being monkey patched to appengine's urlfetch library.

Appengine commands

Testing locally

$ dev_appserver.py app.yaml

Deploying

$ gcloud app deploy app.yaml

Adding libraries

$ rm -rf lib/*
$ pip install -t lib -r requirements.txt