Skip to content

Commit

Permalink
#114 Add kit tools (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
choisungwook authored Dec 12, 2024
1 parent 76dc46e commit 4f8ef5a
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/mkdocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
- 'mkdocs/**'
branches:
- master
- main

permissions:
contents: write
Expand Down
14 changes: 9 additions & 5 deletions mkdocs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@ mkdocs

# 로컬 실행방법

```bash
$ pip install poetry
$ poetry shell
$ poetry install
$ http://127.0.0.1:8000 접속
* mkdocs 실행

```sh
pip install poetry
poetry shell
poetry install
mkdocs serve
```

* 웹 브라우저 접속: http://127.0.0.1:8000로 접속

# 참고자료
* https://squidfunk.github.io/mkdocs-material/reference/code-blocks/
1 change: 1 addition & 0 deletions mkdocs/docs/tools
5 changes: 5 additions & 0 deletions tools/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## 개요
* 내가 사용하는 도구 목록

## 목록
* [kit](./kit.md)
10 changes: 10 additions & 0 deletions tools/kit.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## 개요
* 로컬에서 쉽게 실행할 수 있는 DAG 도구로서, makefile을 DAG로 구성할 때 사용
* github: https://github.com/kitproj/kit

## 설치 방법

```sh
brew tap kitproj/kit --custom-remote https://github.com/kitproj/kit
brew install kit
```

0 comments on commit 4f8ef5a

Please sign in to comment.