Skip to content

Commit 95837d2

Browse files
AckerlyLaucjx2004LlYySsSsmikemeng09PearAnne
committed
Init
Co-authored-by: AckerlyLau <1252501373@qq.com> Co-authored-by: Jinxuan Cai <2022212497@bupt.cn> Co-authored-by: LlYySsSs <oschi68@126.com> Co-authored-by: mikemeng09 <Mikemeng09@outlook.com> Co-authored-by: PearAnne <1372248298@qq.com> Co-authored-by: Xin Sky Li <lixin4sky@bupt.edu.cn>
0 parents  commit 95837d2

589 files changed

Lines changed: 112209 additions & 0 deletions

File tree

Some content is hidden

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

.github/workflows/deploy.yml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# .github/workflows/deploy.yml
2+
3+
name: Deploy VitePress Site to Pages
4+
5+
on:
6+
push:
7+
branches: [main]
8+
workflow_dispatch:
9+
10+
permissions:
11+
contents: read
12+
pages: write
13+
id-token: write
14+
15+
jobs:
16+
build:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Checkout
20+
uses: actions/checkout@v4
21+
with:
22+
fetch-depth: 0
23+
- name: Setup Node.js
24+
uses: actions/setup-node@v4
25+
with:
26+
node-version: 20
27+
cache: 'npm'
28+
cache-dependency-path: docs/package-lock.json
29+
- name: Install dependencies
30+
working-directory: ./docs
31+
run: npm ci
32+
- name: Build
33+
working-directory: ./docs
34+
run: npm run docs:build
35+
- name: Setup Pages
36+
uses: actions/configure-pages@v5
37+
- name: Upload artifact
38+
uses: actions/upload-pages-artifact@v3
39+
with:
40+
path: docs/.vitepress/dist
41+
42+
deploy:
43+
needs: build
44+
environment:
45+
name: github-pages
46+
url: ${{ steps.deployment.outputs.page_url }}
47+
runs-on: ubuntu-latest
48+
steps:
49+
- name: Deploy to GitHub Pages
50+
id: deployment
51+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 175 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,175 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
build/
8+
develop-eggs/
9+
dist/
10+
downloads/
11+
eggs/
12+
.eggs/
13+
lib/
14+
lib64/
15+
parts/
16+
sdist/
17+
var/
18+
wheels/
19+
*.egg-info/
20+
.installed.cfg
21+
*.egg
22+
23+
# Distribution / packaging
24+
.Python
25+
env/
26+
build/
27+
develop-eggs/
28+
dist/
29+
downloads/
30+
eggs/
31+
.eggs/
32+
lib/
33+
lib64/
34+
parts/
35+
sdist/
36+
var/
37+
wheels/
38+
*.egg-info/
39+
.installed.cfg
40+
*.egg
41+
42+
# Virtual environments
43+
venv/
44+
env/
45+
ENV/
46+
.env
47+
.venv
48+
.uv-cache/
49+
env/
50+
venv/
51+
ENV/
52+
53+
# IDE specific files
54+
.idea/
55+
.vscode/
56+
*.swp
57+
*.swo
58+
.DS_Store
59+
.spyderproject
60+
.spyproject
61+
.ropeproject
62+
.project
63+
.pydevproject
64+
65+
# Jupyter Notebook
66+
.ipynb_checkpoints
67+
68+
# Unit test / coverage reports
69+
htmlcov/
70+
.tox/
71+
.coverage
72+
.coverage.*
73+
.cache
74+
nosetests.xml
75+
coverage.xml
76+
*.cover
77+
.hypothesis/
78+
.pytest_cache/
79+
80+
# LLM specific
81+
# API keys and secrets
82+
.env
83+
.env.local
84+
api_keys.yaml
85+
secrets.json
86+
87+
# Model weights and checkpoints
88+
*.pt
89+
*.pth
90+
*.h5
91+
*.ckpt
92+
*.pb
93+
weights/
94+
checkpoints/
95+
96+
# Generated outputs
97+
outputs/
98+
results/
99+
logs/
100+
*.log
101+
102+
# Example specific
103+
examples/**/output/
104+
examples/**/*.log
105+
106+
# Documentation
107+
docs/_build/
108+
site/
109+
110+
# Node/npm (for docs/ or VitePress etc.)
111+
docs/node_modules/
112+
docs/.vitepress/dist/
113+
docs/.vitepress/cache/
114+
docs/.vitepress/temp/
115+
docs/.env
116+
docs/.env.*
117+
docs/.DS_Store
118+
119+
# npm/vsce caches (local only)
120+
**/.npm-cache/
121+
**/.npm-cache-vsce/
122+
123+
# Configuration overrides
124+
config.local.yaml
125+
config.local.json
126+
config.local.toml
127+
128+
# Temporary files
129+
tmp/
130+
temp/
131+
bug_pic/
132+
test/**
133+
test/
134+
!test/
135+
!test/masfactory-visualizer/
136+
!test/masfactory-visualizer/**
137+
!test/test_*.py
138+
!test/**/test_*.py
139+
test/masfactory-visualizer/**/__pycache__/
140+
test/masfactory-visualizer/**/*.py[cod]
141+
masfactory-visualizer/test/**
142+
masfactory-visualizer/test/
143+
**/tests/
144+
**/output/
145+
146+
simplified_chatdev_*/
147+
148+
WareHouse/
149+
data/
150+
**/output/
151+
**/output_old/
152+
**/node_modules
153+
**/.vscode
154+
Agent.md
155+
data/
156+
masfactory-visualizer/out/
157+
**/*.vsix
158+
159+
# masfactory-visualizer webview-ui build output
160+
masfactory-visualizer/media/webview-ui/
161+
162+
backup/
163+
vibe_optimizing.md
164+
165+
suite_runs/
166+
vibe_test/**/results/
167+
vibe_test/**/legacy_backup/
168+
test_format/
169+
**/experiments/
170+
test/
171+
vibe_test/
172+
/examples/
173+
**/out/
174+
175+
plugins/

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.10

0 commit comments

Comments
 (0)