🚧 Work in progress — lumi is under active development. Features may change, break, or be incomplete.
Web client for lumi — a local-first, markdown-based note-taking system.
npm install
npm run dev # http://localhost:5173
npm run build # Production build
VITE_LUMI_SERVER_URL is a build-time variable baked into the bundle by Vite.
| Variable | Default | Description |
|---|---|---|
VITE_LUMI_SERVER_URL |
http://localhost:8080 |
URL the browser uses to reach the API server. Baked into the JS bundle — changing it requires a rebuild. |
docker build --build-arg VITE_LUMI_SERVER_URL=http://your-server:8080 \
-t lumi-web .
docker run -d -p 3000:80 lumi-web
The server URL is baked at image build time via ARG. Changing it requires a rebuild.
Full docs at lumi-note.vercel.app/#/docs.
This is a component of the lumi monorepo.