microblog2/runp-sqlite.fcgi

7 lines
133 B
Python
Executable File

#!flask/bin/python
from flup.server.fcgi import WSGIServer
from app import app
if __name__ == '__main__':
WSGIServer(app).run()