Greg,
To run this app in GAE I followed this steps:
1) Create a new app in GAE.
2) Checkout the appblog project in bitbucket:
hg clone http://bitbucket.org/lullis/appblog/
3) Copy this appblog folder inner Google App Engine folder.
4) create a app.yaml file with this content:
application: my-app-id
version: 1
api_version: 1
runtime: python
handlers:
- url: /static/css/(.*)
static_files: static/css/\1
upload: static/css/(.*)
secure: optional
- url: /static/images/(.*)
static_files: static/images/\1
upload: static/images/(.*)
secure: optional
- url: /.*
script: app.py
secure: optional
5) Solve the problem of settings.py: Create a file settings.py
and put the variables:
FEED_URL = '/feed'
SITE_TITLE = 'Your Blog Title'
SITE_SUBTITLE = 'Your Blog Subtitle'
HOME_ADDRESS = '/'
AUTHOR_NAME = 'Your Name'
AUTHOR_EMAIL = 'Your E-mail'
SITE_DOMAIN = 'You Site URL'
6) upload my app to GAE.
7) You can see my app in: http://webpy-experiences.appspot.com/
best regards,
-- Leandro
--
You received this message because you are subscribed to the Google Groups
"web.py" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/webpy?hl=en.