agenda/run.fcgi
2023-10-02 23:45:14 +01:00

9 lines
189 B
Python
Executable file

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