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
- 카마츠루
- 메르페이
- local
- PayPay
- 熱海
- 뮌헨
- 아타미
- codebuild
- CSV
- 釜つる
- 페이페이
- javascript
- duckdb
- 체코
- 태국
- 미츠이 스미토모
- JenkinsFile
- Selenium
- pyenv
- react.js
- vba
- 프라하
- Python
- documentdb
- node.js
- typescript
- 三井住友カード
- PostgreSQL
- 방콕
- terraform
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