diff pics2/pics.fcgi @ 57:b7966ae653f2

pics2: add support for .webm files; add pics.fcgi and index.css
author paulo
date Tue, 14 Jan 2014 23:44:24 -0800
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/pics2/pics.fcgi	Tue Jan 14 23:44:24 2014 -0800
     1.3 @@ -0,0 +1,9 @@
     1.4 +#!/usr/bin/env python
     1.5 +
     1.6 +from flup.server.fcgi import WSGIServer
     1.7 +#from flup.server.fcgi_single import WSGIServer
     1.8 +
     1.9 +import pics_app
    1.10 +
    1.11 +
    1.12 +WSGIServer(pics_app.app).run()