Skip to content

Commit bf8de2e

Browse files
authored
Merge pull request #43 from sikepuri-algorithm/dev
インストール方法を書いた
2 parents 87dcc67 + 90a9e24 commit bf8de2e

File tree

4 files changed

+142
-9
lines changed

4 files changed

+142
-9
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ repos:
5151
rev: v0.12.0
5252
hooks:
5353
- id: markdownlint
54+
args: [-r, ~MD033]
5455
- repo: https://github.com/datarootsio/databooks
5556
rev: 1.2.3
5657
hooks:

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ verify_ssl = true
44
name = "pypi"
55

66
[packages]
7-
pre-commit = "*"
87

98
[dev-packages]
9+
pre-commit = "*"
1010

1111
[requires]
1212
python_version = "3.10"

Pipfile.lock

Lines changed: 121 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,32 @@
1-
<div style="text-align:center"><img src="./static/img/logo-black.svg" alt="logo" height="200px" ></div>
1+
<div style="text-align:center">
2+
<img src="./static/img/logo-black.svg" alt="logo" height="200px" >
3+
</div>
24

35
# Introduction to Algorithms
46

57
これは、アルゴリズム入門のシケプリです。
68

79
[Docusaurus](https://docusaurus.io/) を使って作っています。
810

9-
### 環境構築
11+
## 環境構築
1012

1113
```shell
1214
npm ci
1315
```
1416

15-
### 開発
17+
```shell
18+
pip install pipenv
19+
```
20+
21+
```shell
22+
pipenv sync --dev
23+
```
24+
25+
```shell
26+
pipenv run pre-commit install
27+
```
28+
29+
## 開発
1630

1731
```shell
1832
npm run watch
@@ -24,14 +38,14 @@ npm run watch
2438
npm start
2539
```
2640

27-
### ビルド
41+
## ビルド
2842

2943
```shell
3044
npm run build
3145
```
3246

3347
このコマンドは、`build` ディレクトリに静的コンテンツを出力します。
3448

35-
### その他
49+
## その他
3650

3751
間違いなどがありましたら、Issues や PR などで教えてください。

0 commit comments

Comments
 (0)