Skip to content

Commit

Permalink
Notionページの情報を追加
Browse files Browse the repository at this point in the history
  • Loading branch information
takana-v committed Mar 10, 2024
1 parent 71463a7 commit fc91075
Show file tree
Hide file tree
Showing 120 changed files with 18,099 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Deploy to GitHub Pages

on:
push:
branches:
- main
# Review gh actions docs if you want to further define triggers, paths, etc
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on

permissions:
contents: write

jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm

- name: Install dependencies
run: npm ci

- name: Build website
run: npm run build

# Popular action to deploy to GitHub Pages:
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# Build output to publish to the `gh-pages` branch:
publish_dir: ./build
# The following lines assign commit authorship to the official
# GH-Actions bot for deploys to `gh-pages` branch:
# https://github.com/actions/checkout/issues/13#issuecomment-724415212
# The GH actions bot is used by default if you didn't specify the two fields.
# You can swap them out with your own user credentials.
user_name: github-actions[bot]
user_email: 41898282+github-actions[bot]@users.noreply.github.com
31 changes: 31 additions & 0 deletions .github/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Test deployment

on:
pull_request:
branches:
- main
# Review gh actions docs if you want to further define triggers, paths, etc
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on

jobs:
test-deploy:
name: Test deployment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm

- name: Install dependencies
run: npm ci

- name: Test build website
run: npm run build

- name: Lint markdown
run: npm run lint:markdown
20 changes: 20 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Dependencies
/node_modules

# Production
/build

# Generated files
.docusaurus
.cache-loader

# Misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
1 change: 1 addition & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
npm run lint:markdown
7 changes: 7 additions & 0 deletions .markdownlint-cli2.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"config": {
"MD013": false,
"MD033": false
},
"ignores": [".git", "node_modules", ".hasky"]
}
7 changes: 7 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Copyright 2024 UniMagic-Creators

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:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

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.
41 changes: 41 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Knowledge-Hub

主にVRChat関連の技術に関する知見をためる場所です。

[Docusaurus](https://docusaurus.io/)を使用しています。

## ライセンス

一部のファイルを除き、MIT LICENSEです。

static/tabler以下およびstatic/unimagic以下のファイルは別ライセンスなので注意してください。

## テスト・デプロイ方法など

### Installation

```bash
npm ci
```

### Local Development

```bash
npm start
```

### Build

```bash
npm run build
```

### Lint

```bash
npm run lint:markdown
```

### Deployment

mainブランチにコミットされると、自動で更新されます。
3 changes: 3 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
};
9 changes: 9 additions & 0 deletions docs/avatar/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: 'このページについて'
sidebar_label: 'このページについて'
sidebar_position: 1
---

主にアバター改変に関する知見を溜める場所です。

いっぱい溜めて知見の湯船に浸かりましょう(?)
9 changes: 9 additions & 0 deletions docs/misc/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: 'このページについて'
sidebar_label: 'このページについて'
sidebar_position: 1
---

主に雑多な知見を溜める場所です。

いっぱい溜めて知見フェスティバルを開きましょう(?)
9 changes: 9 additions & 0 deletions docs/world/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: 'このページについて'
sidebar_label: 'このページについて'
sidebar_position: 1
---

主にワールド制作に関する知見を溜める場所です。

いっぱい溜めて知見ポイントでお得にお買い物をしましょう(?)
8 changes: 8 additions & 0 deletions docs/world/udon/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"label": "Udon",
"position": 1,
"link": {
"type": "doc",
"id": "world/udon/index"
}
}
7 changes: 7 additions & 0 deletions docs/world/udon/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: 'Udon'
sidebar_label: 'Udon'
sidebar_position: 0
---

Udonとは何か?みたいな内容を時間があれば書きます。
8 changes: 8 additions & 0 deletions docs/world/udon/reference/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"label": "リファレンス",
"position": 1,
"link": {
"type": "doc",
"id": "world/udon/reference/index"
}
}
8 changes: 8 additions & 0 deletions docs/world/udon/reference/csharp/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"label": "C#関係",
"position": 1,
"link": {
"type": "doc",
"id": "world/udon/reference/csharp/index"
}
}
7 changes: 7 additions & 0 deletions docs/world/udon/reference/csharp/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: 'C#関係・リファレンス一覧'
sidebar_label: 'C#関係'
sidebar_position: 0
---

現在、以下のページが存在しています。
Loading

0 comments on commit fc91075

Please sign in to comment.