Pārlūkot izejas kodu

Fix: README, Add: Dockerfile

iaun 3 mēneši atpakaļ
vecāks
revīzija
f99685ed40
1 mainītis faili ar 4 papildinājumiem un 3 dzēšanām
  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'