requirement.dev.txt 삭제 .

This commit is contained in:
hbyang 2026-06-15 15:57:20 +09:00
parent f7833ba466
commit 8bb4402b33
2 changed files with 2 additions and 11 deletions

View File

@ -50,11 +50,11 @@ backend/
## 실행 / 테스트
```bash
# 레포 최상위에서 docker compose up -d (postgres + 서버). 상세는 루트 README.
# 레포 최상위에서 docker compose up -d (backend만; DB 는 외부 PostgreSQL). 상세는 루트 README.
cd backend
pip install -r requirements.txt # 실행
python web_main.py # APP_ENV 기본 local
pip install -r requirements-dev.txt # 테스트
pip install pytest pytest-asyncio httpx # 테스트 도구
python -m pytest
```
- 서버: http://localhost:9300/docs

View File

@ -1,9 +0,0 @@
-r requirements.txt
# 테스트
pytest
pytest-asyncio
httpx
# 부하 테스트
locust