news-crawler
python 3.10.11 fast-api poetry # ISTALL.md 참조 selenium
poetry shell
poetry install
본인의 환경에 맞게 settings.json
파일 생성
cp settings-sample.json settings.json
# poetry shell 이 실행 되어 있는 경우
uvicorn app.main:app --reload
# poetry shell 이 실행 되어 있으면서 port 변경하는 경우
uvicorn app.main:app --port 8888 --reload
# poetry shell 이 실행 되어 있지 않은 경우
poetry run uvicorn app.main:app
pytest
alembic revision -m "commit 메시지 작성"