Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- JenkinsFile
- CSV
- documentdb
- terraform
- pyenv
- 방콕
- react.js
- 뮌헨
- 釜つる
- 카마츠루
- 아타미
- 메르페이
- duckdb
- Selenium
- 미츠이 스미토모
- node.js
- local
- typescript
- 페이페이
- vba
- PostgreSQL
- codebuild
- 프라하
- javascript
- PayPay
- 熱海
- 태국
- 三井住友カード
- 체코
- Python
Archives
- Today
- Total
목록makefile (1)
도쿄사는 외노자
Makefile
개요FastAPI로 API 개발 도중, Makefile을 사용해 보았다.상세아래와 같은 식으로 샘플을 작성해 보았다..PHONY: shell install test fmt lint# Poetry 가상환경 활성화shell: poetry shell# 종속성 설치install: poetry lock poetry install# 실행serve: poetry run uvicorn main:app --reload# 테스트 실행test: export PYTHONPATH=$(pwd):$PYTHONPATH python -m pytest tests# 코드 포맷팅fmt: poetry run ruff format .# 코드 린팅lint: poetry run ruff check . -..
Tech/Environment Setting
2024. 9. 11. 16:40