瀏覽代碼

Fix: README, Add: Dockerfile

iaun 3 月之前
父節點
當前提交
f99685ed40
共有 1 個文件被更改,包括 4 次插入3 次删除
  1. 4 3
      backend/requirements.txt

+ 4 - 3
backend/requirements.txt

@@ -19,7 +19,8 @@ pytest==7.4.3
 hypothesis==6.92.1
 
 # Production server
-gunicorn==21.2.0
+gunicorn==21.2.0; sys_platform != 'win32'
+waitress==2.1.2; sys_platform == 'win32'
 
-# PostgreSQL driver
-psycopg2-binary==2.9.9
+# PostgreSQL driver (not needed for local SQLite development on Windows)
+psycopg2-binary==2.9.9; sys_platform != 'win32'