Added FastCGI wrapper based on flipflop

This commit is contained in:
Thomas Kolb 2016-02-10 21:40:07 +01:00
parent 2ef757b74b
commit 89b0b7ed71
1 changed files with 6 additions and 0 deletions

6
schort.fcgi Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/python3
from flipflop import WSGIServer
from schort import app
if __name__ == '__main__':
WSGIServer(app).run()