agenda/run.fcgi
2026-02-17 11:10:46 +00:00

9 lines
260 B
Python
Executable file

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