changeset 45:1d492a6d4237

add index.fcgi
author paulo
date Tue, 05 Feb 2013 02:28:40 -0700
parents c673e9e9c4ca
children aca02ce71274
files myrss/index.fcgi
diffstat 1 files changed, 8 insertions(+), 0 deletions(-) [+]
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/myrss/index.fcgi	Tue Feb 05 02:28:40 2013 -0700
     1.3 @@ -0,0 +1,8 @@
     1.4 +#!/usr/bin/env python
     1.5 +
     1.6 +from flup.server.fcgi import WSGIServer
     1.7 +
     1.8 +from myrss_app import MyRssApp
     1.9 +
    1.10 +
    1.11 +WSGIServer(MyRssApp()).run()