File size: 14,556 Bytes
8a0f16c 26ec914 7a0ef6e 26ec914 7a0ef6e 26ec914 7a0ef6e 26ec914 7a0ef6e 26ec914 7a0ef6e 26ec914 7a0ef6e 26ec914 7a0ef6e 26ec914 7a0ef6e 26ec914 7a0ef6e 26ec914 7a0ef6e 26ec914 7a0ef6e 26ec914 7a0ef6e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 |
# << CodeLumia>>
## CodeLumia File Tree
```
CodeLumia/
.SourceSageignore
app.py
CodeLumia.md
docker-compose.yml
Dockerfile
README.md
requirements.txt
docs/
language_map.json
page_front.md
SourceSageDocs.md
modules/
file_operations.py
git_operations.py
markdown_operations.py
```
## .SourceSageignore
```
.git
__pycache__
LICENSE
output.md
assets
Style-Bert-VITS2
output
streamlit
SourceSage.md
data
.gitignore
.SourceSageignore
*.png
Changelog
SourceSageAssets
SourceSageAssetsDemo
__pycache__
.pyc
**/__pycache__/**
modules\__pycache__
.svg
sourcesage.egg-info
.pytest_cache
dist
build
.gitattributes
.CodeLumiaignore
tmp
.CodeLumiaignore
```
## app.py
```python
# main.py
import os
import streamlit as st
import base64
from modules.git_operations import clone_repository
from modules.file_operations import get_file_tree, process_files
from modules.markdown_operations import create_markdown_content, save_markdown_file
# .gitignoreのパターンを読み込む
ignore_patterns = []
if os.path.exists(".CodeLumiaignore"):
with open(".CodeLumiaignore", "r") as f:
for line in f:
line = line.strip()
if line and not line.startswith("#"):
ignore_patterns.append(line)
# docs\page_front.mdファイルの内容を読み込む
if os.path.exists("docs/page_front.md"):
with open("docs/page_front.md", "r", encoding="utf-8") as f:
page_front_content = f.read()
st.markdown(page_front_content, unsafe_allow_html=True)
st.markdown("---")
# リポジトリのURLを入力するテキストボックス
repo_url = st.text_input("リポジトリのURL:")
st.markdown("---")
# .gitignoreのパターンを編集するサイドバー
st.sidebar.title(".gitignore Patterns")
ignore_patterns = st.sidebar.text_area("Enter patterns (one per line):", value="\n".join(ignore_patterns), height=600).split("\n")
if repo_url:
repo_name = repo_url.split("/")[-1].split(".")[0]
repo_path = clone_repository(repo_url, repo_name)
file_tree = get_file_tree(repo_path, ignore_patterns)
markdown_content = create_markdown_content(repo_name, file_tree, repo_path, ignore_patterns)
# マークダウンファイルを保存
save_markdown_file(repo_name, markdown_content)
# Streamlitアプリケーションの構築
st.markdown(markdown_content, unsafe_allow_html=True)
# ダウンロードリンクの作成
st.markdown(f'<a href="data:text/markdown;base64,{base64.b64encode(markdown_content.encode("utf-8")).decode("utf-8")}" download="{repo_name}.md">Download Markdown File</a>', unsafe_allow_html=True)
st.markdown("---")
st.markdown("# Full Text")
st.code(markdown_content)
```
## CodeLumia.md
```markdown
# << CodeLumia>>
## CodeLumia File Tree
```
CodeLumia/
app.py
README.md
docs/
SourceSageDocs.md
```
## app.py
```python
# sample code
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
```
## README.md
```markdown
---
title: CodeLumia
emoji: 📚
colorFrom: purple
colorTo: blue
sdk: streamlit
sdk_version: 1.33.0
app_file: app.py
pinned: false
license: mit
---
<p align="center">
<img src="https://media.githubusercontent.com/media/Sunwood-ai-labs/CodeLumia/main/docs/CodeLumia_icon.png" width="50%">
<br>
<h1 align="center">CodeLumia</h1>
<h3 align="center">
~Learn to Code, Step by Step~
[![Hugging Face Spaces](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Spaces-blue)](https://huggingface.co/spaces/MakiAi/CodeLumia)[![](https://img.shields.io/github/stars/Sunwood-ai-labs/CodeLumia)](https://github.com/Sunwood-ai-labs/CodeLumia)[![](https://img.shields.io/github/last-commit/Sunwood-ai-labs/CodeLumia)](https://github.com/Sunwood-ai-labs/CodeLumia)[![](https://img.shields.io/github/languages/top/Sunwood-ai-labs/CodeLumia)](https://github.com/Sunwood-ai-labs/CodeLumia)
</h3>
</p>
```
## docs/SourceSageDocs.md
```markdown
# SourceSageDocs
```bash
sourcesage --repository CodeLumia --owner Sunwood-ai-labs
```
```
```
## docker-compose.yml
```yaml
version: '3'
services:
app:
build: .
ports:
- "8501:8501"
volumes:
- .:/app
```
## Dockerfile
```
FROM python:3.12-slim
WORKDIR /app
RUN apt-get update && \
apt-get install -y git && \
rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 8501
CMD ["streamlit", "run", "app.py"]
```
## README.md
```markdown
---
title: CodeLumia
emoji: 📚
colorFrom: purple
colorTo: blue
sdk: docker
app_port: 8501
app_file: app.py
pinned: false
license: mit
---
<p align="center">
<img src="https://media.githubusercontent.com/media/Sunwood-ai-labs/CodeLumia/main/docs/CodeLumia_icon.png" width="50%">
<br>
<h1 align="center">CodeLumia</h1>
<h3 align="center">
~Learn to Code, Step by Step~
[![Hugging Face Spaces](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Spaces-blue)](https://huggingface.co/spaces/MakiAi/CodeLumia)[![](https://img.shields.io/github/stars/Sunwood-ai-labs/CodeLumia)](https://github.com/Sunwood-ai-labs/CodeLumia)[![](https://img.shields.io/github/last-commit/Sunwood-ai-labs/CodeLumia)](https://github.com/Sunwood-ai-labs/CodeLumia)[![](https://img.shields.io/github/languages/top/Sunwood-ai-labs/CodeLumia)](https://github.com/Sunwood-ai-labs/CodeLumia)
</h3>
</p>
## 🚀 はじめに
CodeLumiaへようこそ!CodeLumiaは、GitHubリポジトリのソースコードを分析し、包括的なマークダウン形式のドキュメントを自動生成するツールです。プロジェクトの構造、依存関係、設定などを簡単に理解できるようになります。
CodeLumiaは、開発者がコードベースをすばやく把握し、プロジェクトに効率的に貢献できるようにすることを目的としています。新しいチームメンバーのオンボーディングを容易にし、コードの保守性を向上させます。
>[!TIP]
>このリポジトリは[SourceSage](https://github.com/Sunwood-ai-labs/SourceSage)を活用しており、リリースノートやREADME、コミットメッセージの9割は[SourceSage](https://github.com/Sunwood-ai-labs/SourceSage) + [claude.ai](https://claude.ai/)で生成しています。
### 主な特徴:
- GitHubリポジトリの自動分析
- マークダウン形式のドキュメント生成
- ファイルとディレクトリの無視パターンのカスタマイズ
- わかりやすいStreamlitユーザーインターフェース
CodeLumiaを使用して、プロジェクトのドキュメンテーションを強化し、チームのコラボレーションを促進しましょう。ぜひお試しください!
## デモアプリ
[![Hugging Face Spaces](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Spaces-blue)](https://huggingface.co/spaces/OFA-Sys/OFA-Image_Caption)
### 前提条件
- Docker
- Docker Compose
### インストール
1. リポジトリをクローンします:
```bash
git clone https://github.com/Sunwood-ai-labs/CodeLumia.git
cd CodeLumia
```
2. Dockerコンテナをビルドして実行します:
```bash
docker-compose up --build
```
3. ブラウザで `http://localhost:8501` にアクセスしてアプリケーションを開きます。
## 📖 使い方
1. 分析したいGitHubリポジトリのURLをテキスト入力フィールドに入力します。
2. アプリケーションがリポジトリをクローンし、ファイルを処理して、マークダウンのドキュメントファイルを生成します。
3. 生成されたドキュメントがStreamlitアプリに表示されます。
4. "Download Markdown File"リンクをクリックして、マークダウンファイルをダウンロードできます。
>[!TIP]
>Full Textのところからクリップボードにコピーすることもできます
## 🔧 設定
- `.CodeLumiaignore`ファイルには、ドキュメント生成プロセス中に無視する特定のファイルとディレクトリのパターンが含まれています。これらのパターンは、Streamlitアプリのサイドバーで編集できます。
## 📂 プロジェクト構造
```
CodeLumia/
├─ .github/
│ └─ workflows/
│ └─ run.yaml
├─ docs/
│ ├─ language_map.json
│ ├─ page_front.md
│ └─ SourceSageDocs.md
├─ modules/
│ ├─ file_operations.py
│ ├─ git_operations.py
│ └─ markdown_operations.py
├─ app.py
├─ CodeLumia.md
├─ docker-compose.yml
├─ Dockerfile
├─ README.md
└─ requirements.txt
```
## 🤝 コントリビューション
コントリビューションは大歓迎です!問題を見つけたり、改善のための提案がある場合は、issueを開くかプルリクエストを送ってください。
## 📄 ライセンス
このプロジェクトは[MITライセンス](LICENSE)の下で公開されています。
```
```
## requirements.txt
```plaintext
streamlit
```
## docs/language_map.json
```json
{
".py": "python",
".js": "javascript",
".java": "java",
".c": "c",
".cpp": "cpp",
".cs": "csharp",
".go": "go",
".php": "php",
".rb": "ruby",
".rs": "rust",
".ts": "typescript",
".html": "html",
".css": "css",
".json": "json",
".xml": "xml",
".yml": "yaml",
".yaml": "yaml",
".md": "markdown",
".txt": "plaintext",
".sh": "bash",
".sql": "sql",
"Dockerfile": "dockerfile",
".dockerfile": "dockerfile",
"docker-compose.yml": "yaml",
"docker-compose.yaml": "yaml"
}
```
## docs/page_front.md
```markdown
<p align="center">
<img src="https://media.githubusercontent.com/media/Sunwood-ai-labs/CodeLumia/main/docs/CodeLumia_icon.png" width="40%">
<br>
<h1 align="center">CodeLumia</h1>
<h3 align="center">
~Learn to Code, Step by Step~
[![Hugging Face Spaces](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Spaces-blue)](https://huggingface.co/spaces/OFA-Sys/OFA-Image_Caption)[![](https://img.shields.io/github/stars/Sunwood-ai-labs/CodeLumia)](https://github.com/Sunwood-ai-labs/CodeLumia)[![](https://img.shields.io/github/last-commit/Sunwood-ai-labs/CodeLumia)](https://github.com/Sunwood-ai-labs/CodeLumia)[![](https://img.shields.io/github/languages/top/Sunwood-ai-labs/CodeLumia)](https://github.com/Sunwood-ai-labs/CodeLumia)
</h3>
</p>
```
## docs/SourceSageDocs.md
```markdown
# SourceSageDocs
```bash
sourcesage --repository CodeLumia --owner Sunwood-ai-labs
```
```
## modules/file_operations.py
```python
import os
import fnmatch
def get_file_tree(repo_path, ignore_patterns):
file_tree = ""
for root, dirs, files in os.walk(repo_path):
# .gitignoreに一致するディレクトリを無視
dirs[:] = [d for d in dirs if not any(fnmatch.fnmatch(d, pattern) for pattern in ignore_patterns)]
level = root.replace(repo_path, "").count(os.sep)
indent = " " * 4 * (level)
file_tree += f"{indent}{os.path.basename(root)}/\n"
subindent = " " * 4 * (level + 1)
for f in files:
# .gitignoreに一致するファイルを無視
if not any(fnmatch.fnmatch(f, pattern) for pattern in ignore_patterns):
file_tree += f"{subindent}{f}\n"
return file_tree
def process_files(repo_path, ignore_patterns):
file_contents = []
for root, dirs, files in os.walk(repo_path):
# .gitignoreに一致するディレクトリを無視
dirs[:] = [d for d in dirs if not any(fnmatch.fnmatch(d, pattern) for pattern in ignore_patterns)]
for file in files:
# .gitignoreに一致するファイルを無視
if not any(fnmatch.fnmatch(file, pattern) for pattern in ignore_patterns):
file_path = os.path.join(root, file)
with open(file_path, "r", encoding="utf-8", errors="ignore") as f:
content = f.read()
file_contents.append((file_path.replace(f'{repo_path}/', ''), content))
return file_contents
```
## modules/git_operations.py
```python
import os
import shutil
import time
def clone_repository(repo_url, repo_name):
# tmpフォルダを削除
if os.path.exists("tmp"):
shutil.rmtree("tmp")
# tmpフォルダを作成
os.makedirs("tmp")
# リポジトリのクローン
repo_path = f"tmp/{repo_name}"
if os.path.exists(repo_path):
shutil.rmtree(repo_path)
os.system(f"git clone {repo_url} {repo_path}")
# 一時的な遅延を追加
time.sleep(1)
return repo_path
```
## modules/markdown_operations.py
```python
import json
from modules.file_operations import get_file_tree, process_files
import os
def create_markdown_content(repo_name, file_tree, repo_path, ignore_patterns):
markdown_content = f"# << {repo_name}>> \n## {repo_name} File Tree\n\n```\n{file_tree}\n```\n\n"
# 拡張子と言語のマッピングを読み込む
with open("docs/language_map.json", "r") as f:
language_map = json.load(f)
file_contents = process_files(repo_path, ignore_patterns)
for file_path, content in file_contents:
_, file_extension = os.path.splitext(file_path)
language = language_map.get(file_extension, "")
# コードブロック内のコードブロックの範囲の全行の先頭に2つのスペースを入れる
lines = content.split("\n")
modified_lines = []
inside_code_block = False
for line in lines:
if line.startswith("```"):
inside_code_block = not inside_code_block
modified_lines.append("\t" + line)
else:
if inside_code_block:
modified_lines.append("\t" + line)
else:
modified_lines.append(line)
content = "\n".join(modified_lines)
# コードブロックの中のバッククォートをエスケープ
markdown_content += f"## {file_path}\n\n```{language}\n{content}\n```\n\n"
return markdown_content
def save_markdown_file(repo_name, markdown_content):
with open(f"{repo_name}.md", "w", encoding="utf-8") as f:
f.write(markdown_content)
```
|