Skip to content

Commit baf4a27

Browse files
authored
Merge pull request #18 from BillyChen1/cqm_website_v2
fluid website v2 init
2 parents df6bad4 + e6fd553 commit baf4a27

File tree

614 files changed

+21511
-10954
lines changed

Some content is hidden

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

614 files changed

+21511
-10954
lines changed

.github/workflows/deploy.yaml

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- master
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+
- uses: actions/setup-node@v4
22+
with:
23+
node-version: 19
24+
cache: npm
25+
26+
- name: Install dependencies
27+
run: npm install
28+
- name: Build website
29+
run: npm run build
30+
31+
# Popular action to deploy to GitHub Pages:
32+
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus
33+
- name: Deploy to GitHub Pages
34+
uses: peaceiris/actions-gh-pages@v3
35+
with:
36+
github_token: ${{ secrets.GITHUB_TOKEN }}
37+
# Build output to publish to the `gh-pages` branch:
38+
publish_dir: ./build
39+
# The following lines assign commit authorship to the official
40+
# GH-Actions bot for deploys to `gh-pages` branch:
41+
# https://github.com/actions/checkout/issues/13#issuecomment-724415212
42+
# The GH actions bot is used by default if you didn't specify the two fields.
43+
# You can swap them out with your own user credentials.
44+
user_name: github-actions[bot]
45+
user_email: 41898282+github-actions[bot]@users.noreply.github.com

.gitignore

+20
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*

404.html

-20
This file was deleted.

README.md

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Website
2+
3+
This website is built using [Docusaurus](https://docusaurus.io/), a modern static website generator.
4+
5+
### Installation
6+
7+
```
8+
$ yarn
9+
```
10+
11+
### Local Development
12+
13+
```
14+
$ yarn start
15+
```
16+
17+
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
18+
19+
### Build
20+
21+
```
22+
$ yarn build
23+
```
24+
25+
This command generates static content into the `build` directory and can be served using any static contents hosting service.
26+
27+
### Deployment
28+
29+
Using SSH:
30+
31+
```
32+
$ USE_SSH=true yarn deploy
33+
```
34+
35+
Not using SSH:
36+
37+
```
38+
$ GIT_USER=<Your GitHub username> yarn deploy
39+
```
40+
41+
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.

README_zh.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Website
2+
3+
本项目使用[Docusaurus](https://docusaurus.io/)工具生成,

TOC.html

-80
This file was deleted.

architecture.png

-137 KB
Binary file not shown.

assets/css/0.styles.051661e8.css

-1
This file was deleted.

assets/css/0.styles.47dddd71.css

-1
This file was deleted.

assets/css/0.styles.68910075.css

-1
This file was deleted.

assets/css/0.styles.a3f68dae.css

-1
This file was deleted.

assets/css/0.styles.b84a315e.css

-1
This file was deleted.

assets/css/0.styles.ecea6f24.css

-1
This file was deleted.

assets/css/0.styles.f6fab893.css

-1
This file was deleted.
-27.5 KB
Binary file not shown.
-54.6 KB
Binary file not shown.

assets/img/search.83621669.svg

-1
This file was deleted.

0 commit comments

Comments
 (0)