- 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
53 lines
491 B
Plaintext
53 lines
491 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Build output
|
|
.next/
|
|
out/
|
|
build/
|
|
dist/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.docker
|
|
|
|
# Database
|
|
*.db
|
|
*.db-journal
|
|
prisma/dev.db
|
|
|
|
# Generated
|
|
memento-note/prisma/generated/
|
|
mcp-server/prisma/generated/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Uploads (user data)
|
|
memento-note/public/uploads/
|
|
|
|
# Test
|
|
coverage/
|
|
test-results/
|
|
playwright-report/
|
|
|
|
# Docker
|
|
docker-data/
|
|
|
|
# Misc
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|