mirror of
https://github.com/dnote/dnote
synced 2026-03-14 22:45:50 +01:00
No description
- Go 90.7%
- SCSS 7.4%
- Shell 1.4%
- Makefile 0.2%
- JavaScript 0.2%
| .github | ||
| assets | ||
| host/docker | ||
| licenses | ||
| pkg | ||
| scripts | ||
| .gitignore | ||
| CHANGELOG.md | ||
| CONTRIBUTING.md | ||
| go.mod | ||
| go.sum | ||
| install.sh | ||
| LICENSE | ||
| Makefile | ||
| README.md | ||
| SELF_HOSTING.md | ||
Dnote is a simple command line notebook. Single binary, no dependencies. Since 2017.
Your notes are stored in one SQLite file - portable, searchable, and completely under your control. Optional sync between devices via a self-hosted server with REST API access.
# Add a note (or omit -c to launch your editor)
dnote add linux -c "Check disk usage with df -h"
# View notes in a book
dnote view linux
# Full-text search
dnote find "disk usage"
# Sync notes
dnote sync
Installation
# Linux, macOS, FreeBSD, Windows
curl -s https://www.getdnote.com/install | sh
# macOS with Homebrew
brew install dnote
Or download binary.
Server (Optional)
Just run a binary. No database setup required.
Run with Docker Compose using compose.yml:
services:
dnote:
image: dnote/dnote:latest
container_name: dnote
ports:
- 3001:3001
volumes:
- ./dnote_data:/data
restart: unless-stopped
Or see the guide for binary installation and configuration options.
Documentation
See the Dnote wiki for full documentation.
