Skip to content

Commit fc91075

Browse files
committed
Notionページの情報を追加
1 parent 71463a7 commit fc91075

File tree

120 files changed

+18099
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+18099
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
# Review gh actions docs if you want to further define triggers, paths, etc
8+
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
9+
10+
permissions:
11+
contents: write
12+
13+
jobs:
14+
deploy:
15+
name: Deploy to GitHub Pages
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v4
19+
with:
20+
fetch-depth: 0
21+
22+
- uses: actions/setup-node@v4
23+
with:
24+
node-version: 18
25+
cache: npm
26+
27+
- name: Install dependencies
28+
run: npm ci
29+
30+
- name: Build website
31+
run: npm run build
32+
33+
# Popular action to deploy to GitHub Pages:
34+
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus
35+
- name: Deploy to GitHub Pages
36+
uses: peaceiris/actions-gh-pages@v3
37+
with:
38+
github_token: ${{ secrets.GITHUB_TOKEN }}
39+
# Build output to publish to the `gh-pages` branch:
40+
publish_dir: ./build
41+
# The following lines assign commit authorship to the official
42+
# GH-Actions bot for deploys to `gh-pages` branch:
43+
# https://github.com/actions/checkout/issues/13#issuecomment-724415212
44+
# The GH actions bot is used by default if you didn't specify the two fields.
45+
# You can swap them out with your own user credentials.
46+
user_name: github-actions[bot]
47+
user_email: 41898282+github-actions[bot]@users.noreply.github.com

.github/workflows/test-deploy.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Test deployment
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
# Review gh actions docs if you want to further define triggers, paths, etc
8+
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
9+
10+
jobs:
11+
test-deploy:
12+
name: Test deployment
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
with:
17+
fetch-depth: 0
18+
19+
- uses: actions/setup-node@v4
20+
with:
21+
node-version: 18
22+
cache: npm
23+
24+
- name: Install dependencies
25+
run: npm ci
26+
27+
- name: Test build website
28+
run: npm run build
29+
30+
- name: Lint markdown
31+
run: npm run lint:markdown

.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Dependencies
2+
/node_modules
3+
4+
# Production
5+
/build
6+
7+
# Generated files
8+
.docusaurus
9+
.cache-loader
10+
11+
# Misc
12+
.DS_Store
13+
.env.local
14+
.env.development.local
15+
.env.test.local
16+
.env.production.local
17+
18+
npm-debug.log*
19+
yarn-debug.log*
20+
yarn-error.log*

.husky/pre-commit

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
npm run lint:markdown

.markdownlint-cli2.jsonc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"config": {
3+
"MD013": false,
4+
"MD033": false
5+
},
6+
"ignores": [".git", "node_modules", ".hasky"]
7+
}

LICENSE

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright 2024 UniMagic-Creators
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Knowledge-Hub
2+
3+
主にVRChat関連の技術に関する知見をためる場所です。
4+
5+
[Docusaurus](https://docusaurus.io/)を使用しています。
6+
7+
## ライセンス
8+
9+
一部のファイルを除き、MIT LICENSEです。
10+
11+
static/tabler以下およびstatic/unimagic以下のファイルは別ライセンスなので注意してください。
12+
13+
## テスト・デプロイ方法など
14+
15+
### Installation
16+
17+
```bash
18+
npm ci
19+
```
20+
21+
### Local Development
22+
23+
```bash
24+
npm start
25+
```
26+
27+
### Build
28+
29+
```bash
30+
npm run build
31+
```
32+
33+
### Lint
34+
35+
```bash
36+
npm run lint:markdown
37+
```
38+
39+
### Deployment
40+
41+
mainブランチにコミットされると、自動で更新されます。

babel.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
3+
};

docs/avatar/index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: 'このページについて'
3+
sidebar_label: 'このページについて'
4+
sidebar_position: 1
5+
---
6+
7+
主にアバター改変に関する知見を溜める場所です。
8+
9+
いっぱい溜めて知見の湯船に浸かりましょう(?)

docs/misc/index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: 'このページについて'
3+
sidebar_label: 'このページについて'
4+
sidebar_position: 1
5+
---
6+
7+
主に雑多な知見を溜める場所です。
8+
9+
いっぱい溜めて知見フェスティバルを開きましょう(?)

0 commit comments

Comments
 (0)