summaryrefslogtreecommitdiff
path: root/requirements.txt
AgeCommit message (Collapse)Author
2024-04-27Switch to gevent as backing WSGI serverLinnnus
We've switched the backing server a few times: At 45a7c91fbef2e9c2c0c6821edb06bae75077b50c Linnnus added gunicorn because it supported SSL certificates, unlike the default server. At 0cb2a367968ea0bc45739da5c88fd7b88ca281a7 Jannick switched to cherrypy. I'm not sure why. At 22d80f90b6b60b6a40a30b772716b950239b539b Jannick switched to switched to Waitress, which worked on Windows (unlike gunicorn) but doesn't support SSL. Now, I'm switching to gevent which supports SSL and (apparently) windows. Hopefully we won't have to switch again.
2024-04-27fix: Add missing dependenciesLinnnus
Previous commits rely on added dependencies, but these were not added to the list of requirements. The dependencies in question: - bottle_sqlite - python-dotenv fixup: 110e05bad2c378473954e41231d7581754c8cc8f fixup: 0cb2a367968ea0bc45739da5c88fd7b88ca281a7
2024-04-25fix: Add missing rependenciesLinnnus
The changes introduced in 45a7c91fbef2e9c2c0c6821edb06bae75077b50c rely on using gunicorn instead of the default wsgi server. This patch makes sure that package is added to the list of requrements.
2024-04-11Add missing oauth dependencyLinnnus
Commit 58e2a2d added some initial oauth code but forgot to add the required dependencies to requirements.txt
2024-03-20Add templating engine and index pageLinnnus
2024-03-20Initial commitLinnnus