userBG
userBG

Reputation: 7170

Any App Engine boilerplates available to save time on basic features?

Are the any projects that provide basic features for building an app using a webapp2 including: signup, login, logout, sessions, and anything that will save development time and preferable Jinja2 for templates and python 2.7

I know of two (1, 2) but I'm looking for alternatives.

Upvotes: 4

Views: 1293

Answers (3)

Ash Eldritch
Ash Eldritch

Reputation: 1514

Take a look at Not VanillAE http://notvanillae.appspot.com

It's Webapp2, Jinja2 and Python 2.7. It includes decorators for trivializing caching, user authentication and authorization for Google APIs.

It also builds in some excellent front-end jazz, including Twitter Bootstrap and PJAX.js.

Upvotes: 0

coto
coto

Reputation: 2325

Look at this. With everything that may be you need, templates, user registration, etc, etc

http://www.github.com/coto/gae-boilerplate

Upvotes: 1

specialscope
specialscope

Reputation: 4218

I think this is what you are looking for.

https://github.com/fredrikbonander/Webapp2-Sample-Applications

Upvotes: 0

Related Questions