agenda/run.fcgi

9 lines
211 B
Plaintext
Raw Normal View History

2023-10-02 20:35:30 +01:00
#!/usr/bin/python3
from flipflop import WSGIServer
import sys
2024-09-23 09:21:08 +01:00
sys.path.append('/home/edward/src/agenda') # isort:skip
from web_view import app # isort:skip
2023-10-02 20:35:30 +01:00
if __name__ == '__main__':
WSGIServer(app).run()