Skip to content

Commit c114d6e

Browse files
committed
Initial commit
0 parents  commit c114d6e

34 files changed

Lines changed: 2302 additions & 0 deletions

.github/workflows/build.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Build page
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
defaults:
15+
run:
16+
working-directory: app
17+
18+
steps:
19+
- name: Checkout repository
20+
uses: actions/checkout@v4
21+
22+
- name: Setup Node.js
23+
uses: actions/setup-node@v4
24+
with:
25+
node-version: 20
26+
cache: npm
27+
cache-dependency-path: app/package-lock.json
28+
29+
- name: Install dependencies
30+
run: npm ci
31+
32+
- name: Install Python dependencies
33+
run: python3 -m pip install --user pyyaml
34+
35+
- name: Build
36+
run: npm run build

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
node_modules
2+
.DS_Store
3+
dist
4+
docs
5+
.vscode
6+
.idea
7+
npm-debug.log*
8+
pnpm-debug.log*
9+
yarn-debug.log*
10+
yarn-error.log*
11+
coverage
12+
.env

Kendo-is-Zazen

Whitespace-only changes.

README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Think Kendo
2+
3+
- Visit: [Kendo Idea cards](https://kaimingtao.github.io/Think-Kendo/app)
4+
5+
6+
## Purpose of this project
7+
8+
Kendo knowledge are stored in people's minds, books, online videos, blogs, etc. When we face a question, we may struggle to find the answer.
9+
10+
This project is trying to make answer-searching a bit easier.
11+
12+
After we know the answer, the next step is to understand them. One day we may find a better one.
13+
14+
15+
## How to use the web note
16+
17+
- [ ] TODO
18+
19+
## Contributor
20+
21+
- Kaiming Tao (D2)
22+
23+
<!-- ## How to help improve this project?
24+
- email or discord?
25+
- please use `Issues` tab to create new requests, or discuss some topics.
26+
-->
27+
28+
## License
29+
30+
Shield: [![CC BY-NC-SA 4.0][cc-by-nc-sa-shield]][cc-by-nc-sa]
31+
32+
This work is licensed under a
33+
[Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License][cc-by-nc-sa].
34+
35+
[![CC BY-NC-SA 4.0][cc-by-nc-sa-image]][cc-by-nc-sa]
36+
37+
[cc-by-nc-sa]: http://creativecommons.org/licenses/by-nc-sa/4.0/
38+
[cc-by-nc-sa-image]: https://licensebuttons.net/l/by-nc-sa/4.0/88x31.png
39+
[cc-by-nc-sa-shield]: https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-lightgrey.svg

0 commit comments

Comments
 (0)