dakamenu/dakamenu.fcgi
2015-09-15 22:05:54 -04:00

7 lines
174 B
Python
Executable File

#!/usr/bin/python
from flup.server.fcgi import WSGIServer
from server import app
if __name__ == '__main__':
WSGIServer(app, bindAddress='/tmp/dakamenu-fcgi.sock').run()