init: project scaffold

This commit is contained in:
2026-03-27 15:11:17 +08:00
commit c6be0a5d5b
4 changed files with 88 additions and 0 deletions

12
.gitignore vendored Normal file
View File

@@ -0,0 +1,12 @@
node_modules/
dist/
build/
.env
.env.local
.env.production
__pycache__/
*.pyc
.DS_Store
.vscode/
.idea/
*.log

13
.project.json Normal file
View File

@@ -0,0 +1,13 @@
{
"name": "3D 场景生成开源复现",
"description": "WorldMesh 类似的开源 3D 场景生成项目调研与源码收集,待 GPU 后复现",
"status": "active",
"created": "2026-03-27",
"ports": [
{
"port": 4330,
"label": "dev",
"fixed": true
}
]
}

17
RULES.md Normal file
View File

@@ -0,0 +1,17 @@
# 3D 场景生成开源复现
## 启动
- `python3 -m http.server 4330` — 端口 4330
## 部署
- 平台:待定
- 域名:待定
## 环境变量
- 待补充
## 规则
- 待补充
## 注意事项
- 待补充

46
index.html Normal file
View File

@@ -0,0 +1,46 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3D 场景生成开源复现</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: #0a0a0a; color: #e0e0e0;
min-height: 100vh; padding: 2rem;
}
.container { max-width: 1200px; margin: 0 auto; }
h1 {
font-size: 2.5rem; font-weight: 700;
background: linear-gradient(135deg, #60a5fa, #a78bfa);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
margin-bottom: 0.5rem;
}
.subtitle { color: #888; font-size: 1.1rem; margin-bottom: 2rem; }
.card {
background: #141414; border: 1px solid #222; border-radius: 12px;
padding: 2rem; margin-bottom: 1.5rem;
}
.card h2 { color: #60a5fa; margin-bottom: 1rem; font-size: 1.3rem; }
.card p { line-height: 1.8; color: #aaa; }
</style>
</head>
<body>
<div class="container">
<h1>3D 场景生成开源复现</h1>
<p class="subtitle">WorldMesh 类似的开源 3D 场景生成项目调研与源码收集,待 GPU 后复现</p>
<div class="card">
<h2>概述</h2>
<p>待补充研究内容...</p>
</div>
<div class="card">
<h2>核心发现</h2>
<p>待补充...</p>
</div>
</div>
</body>
</html>