diff options
| author | rr- | 2016-08-14 12:35:14 +0200 |
|---|---|---|
| committer | rr- | 2016-08-14 16:43:35 +0200 |
| commit | af62f8c45ac8986342a56d41f176435ada1a1a9b (patch) | |
| tree | 5bb920cff28c4ac74f2ca1c292ac007d2fcc5c76 /server/requirements.txt | |
| parent | d102c9bdbafe503952c306abb55d430db2c75718 (diff) | |
server/general: ditch falcon for in-house WSGI app
For quite some time, I hated Falcon's class maps approach that caused
more chaos than good for Szurubooru. I've taken a look at the other
frameworks (hug, flask, etc) again, but they all looked too
bloated/over-engineered. I decided to just talk to WSGI myself.
Regex-based routing may not be the fastest in the world, but I'm fine
with response time of 10 ms for cached /posts.
Diffstat (limited to 'server/requirements.txt')
| -rw-r--r-- | server/requirements.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/server/requirements.txt b/server/requirements.txt index b1079d7..fd68f89 100644 --- a/server/requirements.txt +++ b/server/requirements.txt @@ -1,6 +1,5 @@ alembic>=0.8.5 pyyaml>=3.11 -falcon>=0.3.0 psycopg2>=2.6.1 SQLAlchemy>=1.0.12 pytest>=2.9.1 |