feat: initial commit for MischCRM - full private custom personal relationship manager

This commit is contained in:
Kroonk
2026-05-22 15:51:06 +02:00
commit 16e59b1532
10 changed files with 6041 additions and 0 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
version: '3.8'
services:
mischcrm:
container_name: mischcrm
build:
context: .
dockerfile: Dockerfile
restart: unless-stopped
ports:
- '38090:8085'
volumes:
- './data:/app/data'
environment:
- PORT=8085
- DATABASE_PATH=/app/data/crm.db
- NODE_ENV=production