Phase 0: infra fixes (OCR dir, port conflict, systemd services) Phase 1: video PII masking (frame_redactor, privacy API) Phase 2: AI privacy gateway (mitmproxy addon, audit logger) Phase 3: AI routing (Ollama backend, memory admin endpoints) Phase 4: deployment scripts and Makefile
20 lines
409 B
Desktop File
20 lines
409 B
Desktop File
[Unit]
|
|
Description=Mem-Bridge Memory Service
|
|
After=network.target
|
|
Wants=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=pi
|
|
Group=pi
|
|
WorkingDirectory=/data/rockchip/embedding
|
|
EnvironmentFile=-/data/rockchip/embedding/.env
|
|
ExecStart=/data/rockchip/embedding/venv/bin/python server.py --service memory
|
|
Restart=on-failure
|
|
RestartSec=5
|
|
StandardOutput=journal
|
|
StandardError=journal
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|