7 lines
174 B
Python
Executable File
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()
|