Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
e0d18e0
Merge pull request #2 from sohei-t/fix/dashboard-undefined-error
sohei-t Feb 3, 2026
3dee65e
fix: launch_app.command のデータベース初期化エラーを修正
sohei-t Feb 4, 2026
4c6bde8
feat: add recursive folder scanning and hierarchical topic display
sohei-t Feb 4, 2026
268809e
Merge pull request #4 from sohei-t/feat/recursive-folder-scan
sohei-t Feb 4, 2026
f91bed9
feat: improve file detection pattern to match digit-digit format
sohei-t Feb 4, 2026
57ea342
Merge pull request #6 from sohei-t/feat/improve-file-detection-pattern
sohei-t Feb 4, 2026
6cc8600
feat: SSMLを独立したファイルタイプとして追加 (#9)
sohei-t Feb 4, 2026
08f0136
feat: add publication status (free/paid/private) to projects
sohei-t Feb 4, 2026
fa7917e
Merge pull request #11 from sohei-t/feat/publication-status
sohei-t Feb 4, 2026
78b0c72
feat: add publication status master management
sohei-t Feb 4, 2026
491bcba
Merge pull request #12 from sohei-t/feat/publication-status-master
sohei-t Feb 4, 2026
77cb49f
chore: remove unnecessary files from repository
sohei-t Feb 5, 2026
bc88f86
Merge pull request #13 from sohei-t/cleanup/remove-unnecessary-files
sohei-t Feb 5, 2026
e1a37bc
docs: update README.md with correct application description
sohei-t Feb 5, 2026
c58fe12
feat: add missing files indicator to dashboard and detail views
sohei-t Feb 5, 2026
fd7e059
feat: add publication status filter to dashboard
sohei-t Feb 5, 2026
6713613
feat: auto-cleanup deleted project folders from database
sohei-t Feb 7, 2026
3d871eb
fix: add fallback matching for WBS base_name and actual filename mism…
sohei-t Feb 19, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 0 additions & 24 deletions .env.example

This file was deleted.

142 changes: 0 additions & 142 deletions .env.template

This file was deleted.

42 changes: 0 additions & 42 deletions .github/workflows/portfolio-deploy.yml

This file was deleted.

89 changes: 81 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Dependencies
node_modules/
vendor/
.venv/
venv/
__pycache__/
*.pyc

# Build outputs
dist/
Expand All @@ -24,10 +28,8 @@ logs/
# Environment
.env
.env.*
!.env.example
!.env.template

# 🚨 セキュリティ: 認証情報は絶対にコミットしない
# Security: Never commit credentials
credentials/
*.key.json
*-key.json
Expand All @@ -45,9 +47,80 @@ private/
# Temporary files
tmp/
temp/
data/

# Project-specific generated files (should be generated per project)
AUDIO_PROMPTS.json
IMAGE_PROMPTS.json
# GCP credentials (auto-generated)
credentials/*.json
# Test artifacts
.coverage
pytest.ini
htmlcov/
.pytest_cache/

# Workflow/Agent files (development only)
CLAUDE.md
WORKFLOW_*.md
PHASE_*.md
AGENT_*.md
AI_*.md
API_*.md
GAME_*.md
MOBILE_*.md
GCP_*.md
GITHUB_*.md
GYRO_*.md
IMAGEN_*.md
LYRIA_*.md
M4_*.md
SUBAGENT_*.md
TASK_*.md
TEST_*.md
WORKTREE_*.md
ARCHITECTURE.md
BRANCH_LIFECYCLE.md
CLIENT_*.md
CODE_UPDATE_WORKFLOW.md
CONDITIONAL_WORKFLOW.md
CRITICAL_PATH.md
DEDICATED_*.md
DEFAULT_POLICY.md
DESIGN_*.md
DUAL_PURPOSE_WORKFLOW.md
ERROR_HANDLING_STRATEGY.md
EXTERNAL_*.md
FINAL_*.md
FIX_*.md
FRONTEND_*.md
PORTFOLIO_*.md
REQUIREMENTS.md
RESPONSIVE_*.md
SECURITY_*.md
SPEC.md
TECH_STACK.md
URGENT_*.md
VERSION
WBS*.json
PROJECT_INFO.yaml

# Agent config files
agent_config.yaml
agent_library.yaml

# Development scripts
*.sh
!project/*.sh
launch_*.command
main.py
dynamic_task_orchestrator.py
package*.json

# Source files (development tools)
src/
github-portfolio-publisher/
worktrees/
images/

# GitHub workflows (development)
.github/
.gitignore_portfolio

# Tests directory
project/tests/
36 changes: 0 additions & 36 deletions .gitignore_portfolio

This file was deleted.

Loading