2025-11-05 16:48:41 +00:00
# 📝 NoteDiscovery
2025-12-16 13:39:17 +00:00




2025-11-05 16:48:41 +00:00
> Your Self-Hosted Knowledge Base
2025-11-24 10:46:40 +00:00
🌐 ** [Visit the official website ](https://www.notediscovery.com )**
2025-12-07 16:24:11 +00:00
🚀 ** [Try the Live Demo ](https://gamosoft-notediscovery-demo.hf.space )** — *Contents reset daily, for demonstration purposes only*
2025-12-07 16:16:39 +00:00
2025-11-05 16:48:41 +00:00
## What is NoteDiscovery?
NoteDiscovery is a **lightweight, self-hosted note-taking application** that puts you in complete control of your knowledge base. Write, organize, and discover your notes with a beautiful, modern interface—all running on your own server.
2025-12-17 11:24:18 +00:00

2025-11-05 16:57:13 +00:00
2025-11-05 16:48:41 +00:00
## 🎯 Who is it for?
- **Privacy-conscious users** who want complete control over their data
- **Developers** who prefer markdown and local file storage
- **Knowledge workers** building a personal wiki or second brain
- **Teams** looking for a self-hosted alternative to commercial apps
- **Anyone** who values simplicity, speed, and ownership
2025-12-16 13:39:17 +00:00
## 💖 Thanks for using NoteDiscovery!
If this project has been useful to you, consider supporting its development, it truly makes a difference!
< p align = "center" >
2025-12-16 13:51:12 +00:00
< a href = "https://ko-fi.com/gamosoft" target = "_blank" rel = "noopener noreferrer" > < img src = "https://ko-fi.com/img/githubbutton_sm.svg" alt = "Buy Me a Coffee at ko-fi.com" > < / a >
2025-12-16 13:39:17 +00:00
< / p >
2025-11-05 16:48:41 +00:00
## ✨ Why NoteDiscovery?
### vs. Commercial Apps (Notion, Evernote, Obsidian Sync)
| Feature | NoteDiscovery | Commercial Apps |
|---------|---------------|-----------------|
| **Cost** | 100% Free | $xxx/month/year |
| **Privacy** | Your server, your data | Their servers, their terms |
| **Speed** | Lightning fast | Depends on internet |
| **Offline** | Always works | Limited or requires sync |
| **Customization** | Full control | Limited options |
| **No Lock-in** | Plain markdown files | Proprietary formats |
### Key Benefits
- 🔒 **Total Privacy** - Your notes never leave your server
2025-11-14 13:34:19 +00:00
- 🔐 **Optional Authentication** - Simple password protection for self-hosted deployments
2025-11-05 16:48:41 +00:00
- 💰 **Zero Cost** - No subscriptions, no hidden fees
- 🚀 **Fast & Lightweight** - Instant search and navigation
- 🎨 **Beautiful Themes** - Multiple themes, easy to customize
- 🔌 **Extensible** - Plugin system for custom features
- 📱 **Responsive** - Works on desktop, tablet, and mobile
- 📂 **Simple Storage** - Plain markdown files in folders
2025-11-11 13:51:55 +00:00
- 🧮 **Math Support** - LaTeX/MathJax for beautiful equations
2025-11-12 10:16:12 +00:00
- 📄 **HTML Export** - Share notes as standalone HTML files
2025-12-05 11:21:25 +00:00
- 🕸️ **Graph View** - Interactive visualization of connected notes
2025-12-16 13:39:17 +00:00
- ⭐ **Favorites** - Star your most-used notes for instant access
2025-12-17 08:12:42 +00:00
- 📑 **Outline Panel** - Navigate headings with click-to-jump TOC
2025-11-05 16:48:41 +00:00
## 🚀 Quick Start
2025-12-18 15:08:06 +00:00
### Quick Setup
2025-11-12 08:01:30 +00:00
2025-12-18 15:08:06 +00:00
**Linux/macOS:**
2025-11-06 10:29:59 +00:00
```bash
2025-12-18 15:08:06 +00:00
mkdir -p notediscovery/data & & cd notediscovery
docker run -d --name notediscovery -p 8000:8000 \
2025-11-06 10:29:59 +00:00
-v $(pwd)/data:/app/data \
ghcr.io/gamosoft/notediscovery:latest
```
2025-12-18 15:08:06 +00:00
**Windows (PowerShell):**
2025-11-06 10:29:59 +00:00
```powershell
2025-12-18 15:08:06 +00:00
mkdir notediscovery\data; cd notediscovery
docker run -d --name notediscovery -p 8000:8000 `
2025-11-06 10:29:59 +00:00
-v ${PWD}/data:/app/data `
ghcr.io/gamosoft/notediscovery:latest
```
2025-12-18 15:08:06 +00:00
Open **http://localhost:8000** — done! 🎉
2025-11-06 10:29:59 +00:00
2025-12-18 15:08:06 +00:00
> 💡 Your notes are saved in `./data/`. Themes, plugins, locales and default configuration values are included in the image.
2025-11-05 16:48:41 +00:00
2025-12-18 15:08:06 +00:00
### Using Docker Compose
2025-11-05 16:48:41 +00:00
2025-12-18 15:08:06 +00:00
Two docker-compose files are provided:
2025-11-05 16:48:41 +00:00
2025-12-18 15:08:06 +00:00
| File | Use Case |
|------|----------|
| `docker-compose.ghcr.yml` | **Recommended** - Uses pre-built image from GitHub Container Registry |
| `docker-compose.yml` | For development - Builds from local source |
2025-11-05 16:48:41 +00:00
2025-12-18 15:08:06 +00:00
**Option 1: Pre-built image (fastest)**
2025-11-05 16:48:41 +00:00
2025-12-18 15:08:06 +00:00
Linux/macOS:
```bash
mkdir -p notediscovery/data & & cd notediscovery
curl -O https://raw.githubusercontent.com/gamosoft/notediscovery/main/docker-compose.ghcr.yml
docker-compose -f docker-compose.ghcr.yml up -d
```
2025-11-05 16:48:41 +00:00
2025-12-18 15:08:06 +00:00
Windows (PowerShell):
```powershell
mkdir notediscovery\data; cd notediscovery
Invoke-WebRequest -Uri https://raw.githubusercontent.com/gamosoft/notediscovery/main/docker-compose.ghcr.yml -OutFile docker-compose.ghcr.yml
docker-compose -f docker-compose.ghcr.yml up -d
2025-11-05 16:48:41 +00:00
```
2025-12-18 15:08:06 +00:00
**Option 2: Build from source (for development)**
```bash
git clone https://github.com/gamosoft/notediscovery.git
cd notediscovery
docker-compose up -d
```
See [Advanced Docker Setup ](#advanced-docker-setup ) for volume details.
2025-11-05 16:48:41 +00:00
### Running Locally (Without Docker)
For development or if you prefer running directly:
```bash
# Clone the repository
git clone https://github.com/gamosoft/notediscovery.git
cd notediscovery
# Install dependencies
pip install -r requirements.txt
# Run the application
python run.py
# Access at http://localhost:8000
```
**Requirements:**
- Python 3.8 or higher
- pip (Python package manager)
2026-01-09 10:16:38 +00:00
#### Using Virtual Environments (Recommended for Arch/Fedora/Ubuntu 23.04+)
Modern Linux distributions enforce [PEP 668 ](https://peps.python.org/pep-0668/ ), which prevents system-wide pip installs. Use a virtual environment instead:
```bash
# Clone the repository
git clone https://github.com/gamosoft/notediscovery.git
cd notediscovery
# Create a virtual environment
python -m venv venv
# Activate it (choose your shell):
source venv/bin/activate # Bash/Zsh (most Linux distros)
source venv/bin/activate.fish # Fish (CachyOS, etc.)
source venv/bin/activate.csh # Csh/Tcsh
.\venv\Scripts\activate # Windows PowerShell
# Install dependencies and run
pip install -r requirements.txt
python run.py
```
> 💡 **Tip:** You'll need to activate the virtual environment (`source venv/bin/activate`) each time you open a new terminal before running the app.
2025-12-18 15:08:06 +00:00
### Advanced Docker Setup
The image includes bundled config, themes, plugins, and locales. To customize, you must:
1. **Map the volume** in your docker-compose or docker run command
2. **Provide content** - the file/folder must exist with valid content (empty = app might break!)
| Volume | Purpose | Bundled? |
|--------|---------|----------|
| `data/` | Your notes | ❌ You must create |
| `config.yaml` | App settings | ✅ Yes |
| `themes/` | Custom themes | ✅ Yes |
| `plugins/` | Custom plugins | ✅ Yes |
| `locales/` | Translations | ✅ Yes |
2025-12-21 12:23:37 +00:00
### Dashboard Integration
< a href = "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons@master/svg/notediscovery.svg" target = "_blank" >
< img src = "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons@master/svg/notediscovery.svg" alt = "NoteDiscovery Icon" width = "64" height = "64" >
< / a >
An official icon for NoteDiscovery is now available on [Dashboard Icons ](https://dashboardicons.com/icons/notediscovery )!
Use it in your self-hosted dashboards like Homepage, Homarr, Dashy, Heimdall, etc...
2025-11-05 16:48:41 +00:00
2025-11-05 16:57:13 +00:00
## 📚 Documentation
2025-11-18 10:30:15 +00:00
Want to learn more?
2025-11-05 16:57:13 +00:00
2025-11-15 17:01:40 +00:00
- 🎨 ** [THEMES.md ](documentation/THEMES.md )** - Theme customization and creating custom themes
- ✨ ** [FEATURES.md ](documentation/FEATURES.md )** - Complete feature list and keyboard shortcuts
2025-11-24 16:11:22 +00:00
- 🏷️ ** [TAGS.md ](documentation/TAGS.md )** - Organize notes with tags and combined filtering
2025-11-26 14:03:17 +00:00
- 📋 ** [TEMPLATES.md ](documentation/TEMPLATES.md )** - Create notes from reusable templates with dynamic placeholders
2025-11-15 17:01:40 +00:00
- 🧮 ** [MATHJAX.md ](documentation/MATHJAX.md )** - LaTeX/Math notation examples and syntax reference
2025-11-18 10:30:15 +00:00
- 📊 ** [MERMAID.md ](documentation/MERMAID.md )** - Diagram creation with Mermaid (flowcharts, sequence diagrams, and more)
2025-11-15 17:01:40 +00:00
- 🔌 ** [PLUGINS.md ](documentation/PLUGINS.md )** - Plugin system and available plugins
- 🌐 ** [API.md ](documentation/API.md )** - REST API documentation and examples
- 🔐 ** [AUTHENTICATION.md ](documentation/AUTHENTICATION.md )** - Enable password protection for your instance
2025-11-25 15:41:08 +00:00
- 🔧 ** [ENVIRONMENT_VARIABLES.md ](documentation/ENVIRONMENT_VARIABLES.md )** - Configure settings via environment variables
2025-11-15 17:01:40 +00:00
2025-12-14 17:02:57 +00:00
## 🌍 Multiple Languages
NoteDiscovery supports multiple languages! Currently available:
- 🇺🇸 English (en-US) - Default
- 🇪🇸 Español (es-ES)
- 🇩🇪 Deutsch (de-DE)
- 🇫🇷 Français (fr-FR)
**To change language:** Go to Settings (gear icon) → Language dropdown.
**To add your own language:** See the [Contributing Guidelines ](CONTRIBUTING.md#-contributing-translations ) for instructions on creating translation files.
**Docker users:** Mount your custom locales folder to add or override translations:
```yaml
volumes:
- ./locales:/app/locales # Custom translations
```
2025-11-15 17:01:40 +00:00
💡 **Pro Tip:** If you clone this repository, you can mount the `documentation/` folder to view these docs inside the app:
```yaml
# In your docker-compose.yml
volumes:
- ./data:/app/data # Your personal notes
2025-11-15 17:42:56 +00:00
- ./documentation:/app/data/docs:ro # Mount docs subfolder inside the data folder (read-only)
2025-11-15 17:01:40 +00:00
```
2025-11-05 16:57:13 +00:00
2025-11-15 17:01:40 +00:00
Then access them at `http://localhost:8000` - the docs will appear as a `docs/` folder in the file browser!
2025-11-05 16:57:13 +00:00
2025-11-22 19:21:22 +00:00
## 🤝 Contributing
**Before submitting a pull request**, especially for major changes, please:
- Read our ** [Contributing Guidelines ](CONTRIBUTING.md )**
- Open an issue first to discuss major features or significant changes
- Ensure your code follows the project's style and philosophy
2025-11-05 16:48:41 +00:00
## 🔒 Security Considerations
NoteDiscovery is designed for **self-hosted, private use** . Please keep these security considerations in mind:
### Network Security
- ⚠️ **Do NOT expose directly to the internet** without additional security measures
2025-11-14 13:34:19 +00:00
- Run behind a reverse proxy (nginx, Caddy) with HTTPS for production use
2025-11-05 16:48:41 +00:00
- Keep it on your local network or use a VPN for remote access
- By default, the app listens on `0.0.0.0:8000` (all network interfaces)
2025-11-14 13:34:19 +00:00
### Authentication
2025-12-19 14:59:10 +00:00
- **Password protection is DISABLED by default** (default password: `admin` )
- ⚠️ **ENABLE AUTHENTICATION AND CHANGE THE DEFAULT PASSWORD** if exposing to a network!
2025-11-15 17:01:40 +00:00
- See ** [AUTHENTICATION.md ](documentation/AUTHENTICATION.md )** for complete setup instructions
2025-11-26 16:32:51 +00:00
- To disable auth, set `authentication.enabled: false` in `config.yaml`
2025-11-14 19:33:36 +00:00
- Change password with Docker: `docker-compose exec notediscovery python generate_password.py`
2025-11-14 13:34:19 +00:00
- Perfect for single-user or small team deployments
- For multi-user setups, consider a reverse proxy with OAuth/SSO
2025-11-05 16:48:41 +00:00
### Data Privacy
2025-11-15 17:01:40 +00:00
- Your notes are stored as **plain text markdown files** in the `data/` folder
2025-11-05 16:48:41 +00:00
- No data is sent to external services
- Regular backups are recommended
### Best Practices
- Run on `localhost` or a private network only
- Use Docker for isolation and easier security management
- Keep your system and dependencies updated
- Review and audit any plugins you install
- Set appropriate file permissions on the `data/` directory
2025-11-14 13:34:19 +00:00
**TL;DR**: Perfect for personal use on your local machine or home network. Enable built-in password protection if needed, or use a reverse proxy with authentication if exposing to wider networks.
2025-11-05 16:48:41 +00:00
## 📄 License
MIT License - Free to use, modify, and distribute.
---
Made with ❤️ for the self-hosting community