Travis Vasceannie d0d4eea847 chore: configure devcontainer Python venv persistence and normalize package-lock peer dependencies
- Added bind mount for .venv directory in devcontainer to persist Python virtual environment across container rebuilds
- Enabled updateRemoteUserUID for proper file permissions in devcontainer
- Normalized peer dependency flags in package-lock.json (removed inconsistent "peer": true from core dependencies, added to test-only dependencies)
- Added empty codex file placeholder
- Created comprehensive
2026-01-17 21:36:22 -05:00
2026-01-17 19:15:45 -05:00
big
2026-01-06 08:03:04 +00:00
..
2026-01-16 04:18:41 -05:00
2026-01-02 10:11:45 +00:00
```
2026-01-16 09:40:04 -05:00
2026-01-09 10:13:50 +00:00
2026-01-02 04:22:40 +00:00
2026-01-17 19:15:45 -05:00
..
2026-01-16 04:18:41 -05:00
2026-01-08 21:45:05 -05:00
2026-01-17 19:15:45 -05:00
2026-01-17 19:15:45 -05:00
big
2026-01-06 08:03:04 +00:00
2026-01-17 19:15:45 -05:00

NoteFlow

NoteFlow is an intelligent meeting notetaker: local-first audio capture, navigable recall, and evidence-linked summaries. It uses a gRPC API for bidirectional audio streaming and transcription.

What's in this repo

  • Python backend (gRPC server + domain services): src/noteflow/
  • Tauri + React desktop client (Vite): client/

Prerequisites

  • Python 3.12+
  • Node.js 18+ (for the Tauri/React client)
  • Rust toolchain (only if running the Tauri desktop app)
  • Docker (optional, for containerized dev)

Local development

1) Backend server

python -m pip install -e ".[dev]"
python -m noteflow.grpc.server

Optional: run with autoreload (watches src/ and alembic.ini):

python scripts/dev_watch_server.py

By default the server listens on localhost:50051.

If you want PostgreSQL persistence, set NOTEFLOW_DATABASE_URL in your environment or .env (see example.env).

2) Tauri + React client

cd client
npm install

# Web (Vite dev server)
npm run dev

# Desktop (Tauri dev)
npm run tauri dev

The Tauri desktop app requires a working Rust toolchain.

Container-based development

The repository includes a compose.yaml with a server container (and a commented-out Postgres service).

Option A: Run the server in Docker, clients locally

  1. Create a .env file from example.env and set any needed settings.
  2. Start the server container:
docker compose up -d server

The server will expose 50051 on the host; point your client at localhost:50051.

Option B: Enable PostgreSQL in Docker

compose.yaml includes a commented db service using pgvector/pgvector:pg15. To use it:

  1. Uncomment the db service and depends_on/environment lines in compose.yaml.
  2. Set NOTEFLOW_DATABASE_URL to the container URL (example):
postgresql+asyncpg://noteflow:noteflow@db:5432/noteflow
  1. Start services:
docker compose up -d

Common commands

# Backend
pytest
pytest -m "not integration"
ruff check .
mypy src/noteflow

# Client (from client/)
npm run lint
npm run format
npm run test

Configuration

Runtime settings are read from .env and NOTEFLOW_ environment variables. See src/noteflow/config/settings.py and example.env.

Description
No description provided
Readme 431 MiB
Languages
Python 53.8%
TypeScript 33%
Rust 10.8%
Open Policy Agent 1.3%
Shell 0.3%
Other 0.6%