microblog2/runp-sqlite.fcgi

7 lines
133 B
Plaintext
Raw Normal View History

2013-04-15 06:13:17 +00:00
#!flask/bin/python
from flup.server.fcgi import WSGIServer
from app import app
if __name__ == '__main__':
WSGIServer(app).run()