chore: clean up repo for public release
- Remove BMAD framework, IDE configs, dev screenshots, test files, internal docs, and backup files - Rename keep-notes/ to memento-note/ - Update all references from keep-notes to memento-note - Add Apache 2.0 license with Commons Clause (non-commercial restriction) - Add clean .gitignore and .env.docker.example
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
* Importe le contenu intégral de chaque fichier .md
|
||||
*/
|
||||
|
||||
import { PrismaClient } from '../keep-notes/prisma/client-generated/index.js';
|
||||
import { PrismaClient } from '../memento-note/prisma/client-generated/index.js';
|
||||
import { readFileSync } from 'fs';
|
||||
import { join, dirname } from 'path';
|
||||
import { fileURLToPath } from 'url';
|
||||
@@ -14,7 +14,7 @@ const __dirname = dirname(__filename);
|
||||
|
||||
const prisma = new PrismaClient({
|
||||
datasources: {
|
||||
db: { url: 'file:/Users/sepehr/dev/Keep/keep-notes/prisma/dev.db' },
|
||||
db: { url: 'file:/Users/sepehr/dev/Keep/memento-note/prisma/dev.db' },
|
||||
},
|
||||
});
|
||||
|
||||
@@ -24,10 +24,10 @@ const documents = [
|
||||
{ file: 'source-tree-analysis.md', title: '📁 Source Tree Analysis', color: 'green' },
|
||||
{ file: 'project-overview.md', title: '🎯 Project Overview', color: 'purple' },
|
||||
{ file: 'deployment-guide.md', title: '🚀 Deployment Guide', color: 'orange' },
|
||||
{ file: 'development-guide-keep-notes.md', title: '💻 Development Guide', color: 'teal' },
|
||||
{ file: 'development-guide-memento-note.md', title: '💻 Development Guide', color: 'teal' },
|
||||
{ file: 'integration-architecture.md', title: '🔌 Integration Architecture', color: 'blue' },
|
||||
{ file: 'api-contracts-keep-notes.md', title: '📡 API Contracts Keep Notes', color: 'yellow' },
|
||||
{ file: 'architecture-keep-notes.md', title: '🏗️ Architecture Keep Notes', color: 'purple' },
|
||||
{ file: 'api-contracts-memento-note.md', title: '📡 API Contracts Keep Notes', color: 'yellow' },
|
||||
{ file: 'architecture-memento-note.md', title: '🏗️ Architecture Keep Notes', color: 'purple' },
|
||||
{ file: 'code-review-cleanup-report.md', title: '🔍 Code Review Cleanup Report', color: 'red' },
|
||||
{ file: 'data-models.md', title: '🗄️ Data Models', color: 'gray' },
|
||||
{ file: 'component-inventory.md', title: '🧩 Component Inventory', color: 'teal' },
|
||||
|
||||
Reference in New Issue
Block a user