2025-03-04 11:09:47 +01:00
# QuickNotes Application Specifications
2025-03-04 11:23:51 +01:00
This document provides an overview of the QuickNotes application specifications. QuickNotes is a personal knowledge management system that allows users to create and manage notes, read later items, RSS/Atom feeds, uploadable PDF documents, and perform unified full-text search across all content.
2025-03-04 11:09:47 +01:00
## Overview
2025-03-04 11:23:51 +01:00
QuickNotes is built with a Go backend and a Svelte frontend. It uses SQLite for data storage and provides a RESTful API for communication between the frontend and backend. In addition, the application includes an Emacs mode for integrated access directly from the Emacs editor.
2025-03-04 11:09:47 +01:00
## Specification Documents
The following table lists all the specification documents for the QuickNotes application:
2025-03-04 11:23:51 +01:00
| Domain | Description | Link |
|------------------|-------------------------------------------------------------|------------------------------------------|
| Architecture | Overall system architecture | [Architecture ](specs/architecture.md ) |
| Notes | Note creation, management, and linking | [Notes ](specs/notes.md ) |
| Readlist | Save articles for later with automatic content extraction | [Readlist ](specs/readlist.md ) |
| Feeds | RSS/Atom feed subscriptions and entries | [Feeds ](specs/feeds.md ) |
| Documents | Upload and view PDF documents | [Documents ](specs/documents.md ) |
| Omnisearch | Full-text search across all domains | [Omnisearch ](specs/omnisearch.md ) |
| Database | Database schema and relationships | [Database ](specs/database.md ) |
| API | API endpoints and communication | [API ](specs/api.md ) |
| Frontend | User interface and client-side features | [Frontend ](specs/frontend.md ) |
| Authentication | Local-only authentication and potential future enhancements | [Authentication ](specs/authentication.md ) |
2025-03-04 18:12:13 +01:00
| Code Quality | Refactoring plan to meet new code quality standards | [Code Quality Refactoring ](specs/code_quality_refactoring.md ) |
2025-03-04 11:09:47 +01:00
## Key Features
- Create, edit, and delete notes with Markdown support
2025-03-04 11:23:51 +01:00
- Link notes together using wiki-style syntax
2025-03-04 11:09:47 +01:00
- Visualize note connections with an interactive graph
- Save articles for later reading with automatic content extraction
- Manage and read RSS/Atom feeds
2025-03-04 11:23:51 +01:00
- Upload and view PDF documents directly in the app
- Unified full-text search (Omnisearch) across all content
- Emacs integration for seamless workflow
2025-03-04 11:09:47 +01:00
## Technology Stack
2025-03-04 11:23:51 +01:00
- **Backend**: Go with Gin web framework and GORM; SQLite for storage
- **Frontend**: Svelte with SvelteKit, Bulma CSS, FontAwesome
- **Search Engine**: Bleve for full-text search
- **PDF Viewing**: PDF.js-like viewer integrated in the frontend
## Development and Deployment
- Designed for local use with potential for scalability
- Documents can be stored on local disk or blob storage (S3) in future
2025-03-04 18:12:13 +01:00
- Comprehensive API and Emacs mode for enhanced user interaction
- Code quality standards enforced through linting, testing, and code reviews