178 lines
8.7 KiB
Markdown
178 lines
8.7 KiB
Markdown
# Directory Index
|
|
|
|
## Files
|
|
|
|
- **[README.md](./README.md)** - Main project documentation for Memento note-taking app
|
|
- **[.gitignore](./.gitignore)** - Git ignore rules
|
|
- **[.env](./.env)** - Local environment variables (not versioned)
|
|
- **[.env.docker](./.env.docker)** - Docker environment configuration
|
|
- **[.env.example](./.env.example)** - Environment variables template
|
|
- **[CHANGELOG.md](./CHANGELOG.md)** - Version history and changes log
|
|
- **[RELEASE-NOTES.md](./RELEASE-NOTES.md)** - Release notes for v1.0.0
|
|
- **[COMPLETED-FEATURES.md](./COMPLETED-FEATURES.md)** - Comprehensive feature documentation in French
|
|
- **[MCP-GUIDE.md](./MCP-GUIDE.md)** - Complete MCP server setup and usage guide
|
|
- **[MIGRATION_GUIDE.md](./MIGRATION_GUIDE.md)** - Tags to notebooks migration instructions
|
|
- **[DOCKER-SETUP.md](./DOCKER-SETUP.md)** - Docker provider configuration guide
|
|
- **[AI-PROVIDER-FIX.md](./AI-PROVIDER-FIX.md)** - AI provider configuration fixes documentation
|
|
- **[URGENT-FIX.md](./URGENT-FIX.md)** - Urgent admin form save fix deployment guide
|
|
- **[TOUT-EST-CORRIGE.md](./TOUT-EST-CORRIGE.md)** - Summary of 3 critical fixes applied
|
|
- **[EPIC-1-SUMMARY.md](./EPIC-1-SUMMARY.md)** - Database migration epic completion report
|
|
- **[FINAL-SUMMARY.md](./FINAL-SUMMARY.md)** - Overall project summary
|
|
- **[IMPLEMENTATION-SUMMARY.md](./IMPLEMENTATION-SUMMARY.md)** - Implementation details summary
|
|
- **[docker-compose.yml](./docker-compose.yml)** - Docker services orchestration
|
|
- **[package.json.bak](./package.json.bak)** - Workspace package configuration backup
|
|
- **[mcp_workflow.json](./mcp_workflow.json)** - N8N MCP workflow configuration
|
|
- **[n8n-memento-workflow.json](./n8n-memento-workflow.json)** - N8N API testing workflow
|
|
- **[MCP-SSE-ANALYSIS.md](./MCP-SSE-ANALYSIS.md)** - MCP SSE transport analysis
|
|
- **[MCP-LIGHTWEIGHT-TEST.md](./MCP-LIGHTWEIGHT-TEST.md)** - MCP lightweight testing guide
|
|
- **[N8N-MCP-SETUP.md](./N8N-MCP-SETUP.md)** - N8N MCP server setup instructions
|
|
- **[N8N-TECH-NEWS.md](./N8N-TECH-NEWS.md)** - N8N tech news workflow documentation
|
|
- **[n8n-tech-news-workflow.json](./n8n-tech-news-workflow.json)** - N8N tech news automation workflow
|
|
- **[n8n-memento-workflow.json](./n8n-memento-workflow.json)** - N8N Memento API workflow
|
|
- **[test-image.jpg](./test-image.jpg)** - Test image file
|
|
- **[test-note-id.txt](./test-note-id.txt)** - Note ID testing file
|
|
- **[2croix.png](./2croix.png)** - UI screenshot
|
|
- **[admin.png](./admin.png)** - Admin interface screenshot
|
|
- **[bug icon.png](./bug icon.png)** - Bug tracking icon
|
|
- **[note.png](./note.png)** - Note UI screenshot
|
|
- **[note2.png](./note2.png)** - Note UI screenshot variant
|
|
- **[notebook.png](./notebook.png)** - Notebook interface screenshot
|
|
|
|
## Subdirectories
|
|
|
|
### _bmad/
|
|
|
|
BMAD workflow and agent configuration system
|
|
|
|
- **[_bmad/core/](./_bmad/core/)** - Core task execution engines and workflows
|
|
- **[_bmad/bmm/](./_bmad/bmm/)** - Business Model Management workflows and agents
|
|
|
|
### keep-notes/
|
|
|
|
Main Next.js 16 application (Memento note-taking app)
|
|
|
|
- **[keep-notes/app/](./keep-notes/app/)** - Next.js App Router pages and API routes
|
|
- **[keep-notes/components/](./keep-notes/components/)** - React UI components
|
|
- **[keep-notes/context/](./keep-notes/context/)** - React context providers
|
|
- **[keep-notes/lib/](./keep-notes/lib/)** - Utility libraries and helpers
|
|
- **[keep-notes/prisma/](./keep-notes/prisma/)** - Database schema and migrations
|
|
- **[keep-notes/public/](./keep-notes/public/)** - Static assets
|
|
- **[keep-notes/scripts/](./keep-notes/scripts/)** - Database migration scripts
|
|
- **[keep-notes/tests/](./keep-notes/tests/)** - Playwright E2E tests
|
|
- **[keep-notes/auth.ts](./keep-notes/auth.ts)** - NextAuth configuration
|
|
- **[keep-notes/next.config.ts](./keep-notes/next.config.ts)** - Next.js configuration
|
|
- **[keep-notes/tsconfig.json](./keep-notes/tsconfig.json)** - TypeScript configuration
|
|
- **[keep-notes/package.json](./keep-notes/package.json)** - Node.js dependencies
|
|
- **[keep-notes/Dockerfile](./keep-notes/Dockerfile)** - Docker image configuration
|
|
- **[keep-notes/deploy.sh](./keep-notes/deploy.sh)** - Deployment script
|
|
- **[keep-notes/DOCKER_DEPLOYMENT.md](./keep-notes/DOCKER_DEPLOYMENT.md)** - Docker deployment guide
|
|
- **[keep-notes/docker-compose.yml](./keep-notes/docker-compose.yml)** - Docker Compose configuration
|
|
- **[keep-notes/README.md](./keep-notes/README.md)** - Application-specific README
|
|
|
|
### mcp-server/
|
|
|
|
Model Context Protocol server for AI integrations
|
|
|
|
- **[mcp-server/index.js](./mcp-server/index.js)** - Main MCP server (stdio transport)
|
|
- **[mcp-server/index-sse.js](./mcp-server/index-sse.js)** - MCP SSE transport server
|
|
- **[mcp-server/Dockerfile](./mcp-server/Dockerfile)** - Docker image configuration
|
|
- **[mcp-server/start-sse.ps1](./mcp-server/start-sse.ps1)** - PowerShell startup script
|
|
- **[mcp-server/README.md](./mcp-server/README.md)** - MCP server documentation
|
|
- **[mcp-server/README-SSE.md](./mcp-server/README-SSE.md)** - SSE-specific documentation
|
|
- **[mcp-server/N8N-CONFIG.md](./mcp-server/N8N-CONFIG.md)** - N8N integration guide
|
|
- **[mcp-server/package.json](./mcp-server/package.json)** - Node.js dependencies
|
|
- **[mcp-server/prisma/](./mcp-server/prisma/)** - Database client (shared with keep-notes)
|
|
|
|
### docs/
|
|
|
|
Project documentation and architecture
|
|
|
|
- **[docs/index.md](./docs/index.md)** - Documentation index
|
|
- **[docs/project-overview.md](./docs/project-overview.md)** - High-level project description
|
|
- **[docs/architecture-keep-notes.md](./docs/architecture-keep-notes.md)** - Keep Notes app architecture
|
|
- **[docs/architecture-mcp-server.md](./docs/architecture-mcp-server.md)** - MCP server architecture
|
|
- **[docs/integration-architecture.md](./docs/integration-architecture.md)** - System integration overview
|
|
- **[docs/data-models.md](./docs/data-models.md)** - Database schema documentation
|
|
- **[docs/api-contracts-keep-notes.md](./docs/api-contracts-keep-notes.md)** - Keep Notes API contracts
|
|
- **[docs/api-contracts-mcp-server.md](./docs/api-contracts-mcp-server.md)** - MCP API contracts
|
|
- **[docs/component-inventory.md](./docs/component-inventory.md)** - React components catalog
|
|
- **[docs/development-guide-keep-notes.md](./docs/development-guide-keep-notes.md)** - Development setup guide
|
|
- **[docs/deployment-guide.md](./docs/deployment-guide.md)** - Production deployment instructions
|
|
- **[docs/code-review-cleanup-report.md](./docs/code-review-cleanup-report.md)** - Code cleanup findings
|
|
- **[docs/monetization-analysis.md](./docs/monetization-analysis.md)** - Business model analysis
|
|
- **[docs/source-tree-analysis.md](./docs/source-tree-analysis.md)** - Codebase structure analysis
|
|
- **[docs/project-scan-report.json](./docs/project-scan-report.json)** - Automated scan results
|
|
|
|
### scripts/
|
|
|
|
Database migration and utility scripts
|
|
|
|
- **[scripts/migrate-to-notebooks.ts](./scripts/migrate-to-notebooks.ts)** - Migration script for tags to notebooks
|
|
- **[scripts/rollback-notebooks.ts](./scripts/rollback-notebooks.ts)** - Rollback script for notebooks migration
|
|
- **[scripts/verify-migration.js](./scripts/verify-migration.js)** - Migration verification utility
|
|
|
|
### tests/
|
|
|
|
Test-related files and reports
|
|
|
|
- **[tests/keep-notes/playwright-report/](./tests/keep-notes/playwright-report/)** - Playwright test reports
|
|
- **[tests/keep-notes/test-results/](./tests/keep-notes/test-results/)** - Test execution results
|
|
|
|
### _bmad-output/
|
|
|
|
BMAD workflow output and artifacts
|
|
|
|
- **[_bmad-output/planning-artifacts/](./_bmad-output/planning-artifacts/)** - PRD, architecture, and design docs
|
|
- **[_bmad-output/implementation-artifacts/](./_bmad-output/implementation-artifacts/)** - Sprint tracking and story files
|
|
- **[_bmad-output/analysis/](./_bmad-output/analysis/)** - Analysis reports and diagrams
|
|
- **[_bmad-output/excalidraw-diagrams/](./_bmad-output/excalidraw-diagrams/)** - Excalidraw diagram files
|
|
|
|
### .github/
|
|
|
|
GitHub configuration
|
|
|
|
- **[.github/workflows/](./.github/workflows/)** - GitHub Actions workflows
|
|
|
|
### .claude/
|
|
|
|
Claude Code configuration
|
|
|
|
- **[.claude/settings.local.json](./.claude/settings.local.json)** - Local Claude Code settings
|
|
|
|
### .gemini/
|
|
|
|
Gemini AI configuration
|
|
|
|
- Configuration files for Gemini AI integration
|
|
|
|
### .kilocode/
|
|
|
|
Kilocode AI configuration
|
|
|
|
- Configuration files for Kilocode AI integration
|
|
|
|
### .playwright-mcp/
|
|
|
|
Playwright MCP server configuration
|
|
|
|
- Configuration files for Playwright MCP integration
|
|
|
|
### .vscode/
|
|
|
|
VS Code configuration
|
|
|
|
- **[.vscode/settings.json](./.vscode/settings.json)** - Editor settings
|
|
- **[.vscode/extensions.json](./.vscode/extensions.json)** - Recommended extensions
|
|
- **[.vscode/launch.json](./.vscode/launch.json)** - Debug configurations
|
|
|
|
### node_modules/
|
|
|
|
Node.js dependencies (auto-generated)
|
|
|
|
- Installed npm packages for the workspace
|
|
|
|
---
|
|
|
|
*Generated: 2026-01-14*
|
|
*Total Files Indexed: 80+*
|