All checks were successful
Build & Push Friends Image to Gitea Registry / build-and-push (push) Successful in 16s
42 lines
703 B
Markdown
42 lines
703 B
Markdown
# Misch & Friends
|
|
|
|
Friends is the voice-first MischLabs companion for Monica CRM.
|
|
|
|
Monica stays the archive. Friends is the daily surface:
|
|
|
|
- dictate or type what happened
|
|
- review the structured result
|
|
- save journal entries, contact notes, and reminders
|
|
- write to Monica when `MONICA_API_TOKEN` is configured
|
|
|
|
## Local Start
|
|
|
|
```bash
|
|
cp .env.example .env
|
|
npm install
|
|
npm start
|
|
```
|
|
|
|
Open:
|
|
|
|
```text
|
|
http://localhost:38110
|
|
```
|
|
|
|
Public domain:
|
|
|
|
```text
|
|
https://friends.mischlabs.de
|
|
```
|
|
|
|
## Environment
|
|
|
|
```env
|
|
PORT=38110
|
|
MONICA_BASE_URL=https://crm.mischlabs.de
|
|
MONICA_API_TOKEN=
|
|
DATA_DIR=./data
|
|
```
|
|
|
|
Without `MONICA_API_TOKEN`, Friends runs in demo/local mode and stores entries in `data/entries.json`.
|