Initial commit

This commit is contained in:
Edward Betts 2023-10-02 20:35:30 +01:00
commit 46b2dbf4f3
9 changed files with 660 additions and 0 deletions

8
run.fcgi Executable file
View file

@ -0,0 +1,8 @@
#!/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()