Skip to content

Commit

Permalink
Add README file
Browse files Browse the repository at this point in the history
  • Loading branch information
mpessas committed Jan 6, 2011
1 parent 69793d6 commit b5c6aed
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
17 changes: 17 additions & 0 deletions README
@@ -0,0 +1,17 @@
NOTIFY FOR FOSSCOMM
===================


Description
-----------

This is a simple app for GAE to allow for instant notifications of
registered users at events.

Implementation
--------------

This application uses the XMPP protocol. At each message posted by
authorized users, an XMPP message is sent to each registered JID
address.

14 changes: 12 additions & 2 deletions app.yaml
Expand Up @@ -3,19 +3,29 @@ version: 1
runtime: python
api_version: 1

skip_files:
- ^(.*/)?app\.yaml
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^(.*/)?#.*#
- ^(.*/)?.*~
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*/RCS/.*
- ^(.*/)?\..*
- ^README$

handlers:
- url: /css
static_dir: css

- url: /list
script: admin.py
login: admin
secure: required

- url: /post
script: admin.py
login: admin
secure: required

- url: /.*
script: main.py

0 comments on commit b5c6aed

Please sign in to comment.