Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 1008 Bytes

README.md

File metadata and controls

39 lines (28 loc) · 1008 Bytes

gae_blog

An evolved version of the guestbook example in the 'getting started' tutorial on the Google App Engine homepage (https://developers.google.com/appengine/docs/python/gettingstartedpython27/).

Blog could be desrcibed as minimalistic, with co-writer support.

Application uses the 52framework for layout, all credit to them.

Install

app.yaml

Add following to app.yaml, where is replaced with the application name you have registered.

application: <yourapplicationname>
version: 1
runtime: python27
api_version: 1
threadsafe: yes

handlers:
- url: /css
  static_dir: css

- url: /graphics
  static_dir: graphics

- url: /.*
  script: freko247.app

libraries:
- name: jinja2
  version: latest