Your Self-Hosted Knowledge Base
๐ Visit the official website
๐ Try the Live Demo โ Contents reset daily, for demonstration purposes only
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.
- 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
If this project has been useful to you, consider supporting its development, it truly makes a difference!
| 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 |
- ๐ Total Privacy - Your notes never leave your server
- ๐ Optional Authentication - Simple password protection for self-hosted deployments
- ๐ฐ 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
- ๐งฎ Math Support - LaTeX/MathJax for beautiful equations
- ๐ HTML Export - Share notes as standalone HTML files
- ๐ธ๏ธ Graph View - Interactive visualization of connected notes
- โญ Favorites - Star your most-used notes for instant access
- ๐ Outline Panel - Navigate headings with click-to-jump TOC
Linux/macOS:
mkdir -p notediscovery/data && cd notediscovery
docker run -d --name notediscovery -p 8000:8000 \
-v $(pwd)/data:/app/data \
ghcr.io/gamosoft/notediscovery:latestWindows (PowerShell):
mkdir notediscovery\data; cd notediscovery
docker run -d --name notediscovery -p 8000:8000 `
-v ${PWD}/data:/app/data `
ghcr.io/gamosoft/notediscovery:latestOpen http://localhost:8000 โ done! ๐
๐ก Your notes are saved in
./data/. Themes, plugins, locales and default configuration values are included in the image.
Two docker-compose files are provided:
| 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 |
Option 1: Pre-built image (fastest)
Linux/macOS:
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 -dWindows (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 -dOption 2: Build from source (for development)
git clone https://github.com/gamosoft/notediscovery.git
cd notediscovery
docker-compose up -dSee Advanced Docker Setup for volume details.
For development or if you prefer running directly:
# 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:8000Requirements:
- Python 3.8 or higher
- pip (Python package manager)
The image includes bundled config, themes, plugins, and locales. To customize, you must:
- Map the volume in your docker-compose or docker run command
- 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 |
An official icon for NoteDiscovery is now available on Dashboard Icons!
Use it in your self-hosted dashboards like Homepage, Homarr, Dashy, Heimdall, etc...
Want to learn more?
- ๐จ THEMES.md - Theme customization and creating custom themes
- โจ FEATURES.md - Complete feature list and keyboard shortcuts
- ๐ท๏ธ TAGS.md - Organize notes with tags and combined filtering
- ๐ TEMPLATES.md - Create notes from reusable templates with dynamic placeholders
- ๐งฎ MATHJAX.md - LaTeX/Math notation examples and syntax reference
- ๐ MERMAID.md - Diagram creation with Mermaid (flowcharts, sequence diagrams, and more)
- ๐ PLUGINS.md - Plugin system and available plugins
- ๐ API.md - REST API documentation and examples
- ๐ AUTHENTICATION.md - Enable password protection for your instance
- ๐ง ENVIRONMENT_VARIABLES.md - Configure settings via environment variables
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 for instructions on creating translation files.
Docker users: Mount your custom locales folder to add or override translations:
volumes:
- ./locales:/app/locales # Custom translations๐ก Pro Tip: If you clone this repository, you can mount the documentation/ folder to view these docs inside the app:
# In your docker-compose.yml
volumes:
- ./data:/app/data # Your personal notes
- ./documentation:/app/data/docs:ro # Mount docs subfolder inside the data folder (read-only)Then access them at http://localhost:8000 - the docs will appear as a docs/ folder in the file browser!
Before submitting a pull request, especially for major changes, please:
- Read our Contributing Guidelines
- Open an issue first to discuss major features or significant changes
- Ensure your code follows the project's style and philosophy
NoteDiscovery is designed for self-hosted, private use. Please keep these security considerations in mind:
โ ๏ธ Do NOT expose directly to the internet without additional security measures- Run behind a reverse proxy (nginx, Caddy) with HTTPS for production use
- 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)
- Password protection is DISABLED by default (default password:
admin) โ ๏ธ ENABLE AUTHENTICATION AND CHANGE THE DEFAULT PASSWORD if exposing to a network!- See AUTHENTICATION.md for complete setup instructions
- To disable auth, set
authentication.enabled: falseinconfig.yaml - Change password with Docker:
docker-compose exec notediscovery python generate_password.py - Perfect for single-user or small team deployments
- For multi-user setups, consider a reverse proxy with OAuth/SSO
- Your notes are stored as plain text markdown files in the
data/folder - No data is sent to external services
- Regular backups are recommended
- Run on
localhostor 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
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.
MIT License - Free to use, modify, and distribute.
Made with โค๏ธ for the self-hosting community
