Skip to content

Commit c0c1619

Browse files
authored
Merge pull request #171 from chvmvd/update-readme
2 parents 04a27db + c39f610 commit c0c1619

File tree

2 files changed

+61
-16
lines changed

2 files changed

+61
-16
lines changed

README-ja.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
[![Build and Deploy](https://github.com/sikepuri-algorithm/sikepuri-algorithm.github.io/actions/workflows/deploy.yml/badge.svg)](https://github.com/sikepuri-algorithm/sikepuri-algorithm.github.io/actions/workflows/deploy.yml) [![Super Linter](https://github.com/sikepuri-algorithm/sikepuri-algorithm.github.io/actions/workflows/super_linter.yml/badge.svg)](https://github.com/sikepuri-algorithm/sikepuri-algorithm.github.io/actions/workflows/super_linter.yml) [![Formatter](https://github.com/sikepuri-algorithm/sikepuri-algorithm.github.io/actions/workflows/formatter.yml/badge.svg)](https://github.com/sikepuri-algorithm/sikepuri-algorithm.github.io/actions/workflows/formatter.yml) [![Linter](https://github.com/sikepuri-algorithm/sikepuri-algorithm.github.io/actions/workflows/linter.yml/badge.svg)](https://github.com/sikepuri-algorithm/sikepuri-algorithm.github.io/actions/workflows/linter.yml)
2+
3+
<div style="text-align: center">
4+
<img src="./static/img/logo-black.svg" alt="logo" height="200px" >
5+
</div>
6+
7+
[English README is here.](./README.md)
8+
9+
# Introduction to Algorithms
10+
11+
これは、アルゴリズム入門のシケプリです。[こちら](https://sikepuri-algorithm.github.io/)から見ることができます。
12+
13+
[Docusaurus](https://docusaurus.io/) を使って作っています。
14+
15+
## 環境構築
16+
17+
Node.js がインストールされていることを前提とします。
18+
19+
次のコマンドで必要なパッケージをインストールできます。
20+
21+
```shell
22+
npm ci
23+
```
24+
25+
以下は、コミット時に自動で Formatter や Linter を実行させるためのスクリプトです。実行しなくて構いません。
26+
27+
```shell
28+
# Poetry のインストール
29+
curl -sSL https://install.python-poetry.org | python3 -
30+
31+
# Poetry のパッケージのインストール
32+
poetry install
33+
# pre-commit のパッケージのインストール
34+
poetry run pre-commit install
35+
```
36+
37+
## 開発
38+
39+
次を実行すると、ローカルサーバーが立ち上がり、プレビューが表示されます。
40+
41+
```shell
42+
npm start
43+
```
44+
45+
## コントリビューション
46+
47+
誤植などがありましたら、Issue や PR などで気軽に教えてください。

README.md

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,42 +4,40 @@
44
<img src="./static/img/logo-black.svg" alt="logo" height="200px" >
55
</div>
66

7-
# Introduction to Algorithms
7+
[日本語版 README はこちら](./README-ja.md)
88

9-
これは、アルゴリズム入門のシケプリです。デプロイ先は[こちら](https://sikepuri-algorithm.github.io/)
9+
# Introduction to Algorithms
1010

11-
[Docusaurus](https://docusaurus.io/) を使って作っています。
11+
This is a document that summarizes the Introduction to Algorithms class. To see the content, visit [here](https://sikepuri-algorithm.github.io/).
1212

13-
## 環境構築
13+
This site is built using [Docusaurus](https://docusaurus.io/), a modern static site generator.
1414

15-
Node.js のインストール
15+
## Installation
1616

1717
```shell
1818
npm ci
1919
```
2020

21-
以下は、コミット時に自動で Formatter や Linter を実行させるためのスクリプトです。実行しなくても構いません。
22-
23-
Poetry をインストールしていなかったら、次を実行
21+
To run formatter or linter before committing, run the script below. You don't have to run this script.
2422

2523
```shell
24+
# Install Poetry
2625
curl -sSL https://install.python-poetry.org | python3 -
27-
```
2826

29-
```shell
27+
# Install Poetry packages
3028
poetry install
31-
```
32-
33-
```shell
29+
# Install pre-commit packages
3430
poetry run pre-commit install
3531
```
3632

37-
## 開発
33+
## Local Development
34+
35+
This command starts a local development server and opens up a browser window.
3836

3937
```shell
4038
npm start
4139
```
4240

43-
## その他
41+
## Contributions
4442

45-
間違いなどがありましたら、Issue PR などで教えてください。
43+
Issue or PR is always welcome.

0 commit comments

Comments
 (0)