agenda/run.fcgi

9 lines
211 B
Python
Executable file

#!/usr/bin/python3
from flipflop import WSGIServer
import sys
sys.path.append('/home/edward/src/agenda') # isort:skip
from web_view import app # isort:skip
if __name__ == '__main__':
WSGIServer(app).run()