refactored all to dev

This commit is contained in:
2025-11-26 21:48:53 -08:00
parent a8066686bc
commit f8ca733307
170 changed files with 12 additions and 29 deletions
+22
View File
@@ -0,0 +1,22 @@
# Monica Personal CRM
Last Updated: Wed December 04, 2024 06:34:09 PDT
## Overview
Docker Hub: https://hub.docker.com/_/monica
Project: https://www.monicahq.com/
Proxy Port: 80
## Description
Personal Customer Relationship Manager
## Notes
Importing directly to the db (phpmydadmin)
you have to run the following in the container: ```php artisan bookstack:regenerate-permissions```
### Sample ENV
https://raw.githubusercontent.com/monicahq/monica/master/.env.example
+11
View File
@@ -0,0 +1,11 @@
services:
monica:
image: ${MONICA_IMAGE:-latest}
restart: unless-stopped
environment:
- DB_HOST=${MONICA_DB_HOST:-monica-db}
- DB_USERNAME=${MONICA_DB_USERNAME:-monica}
- DB_PASSWORD=${MONICA_DB_PASSWORD:-changeme}
- APP_ENV=${MONICA_APP_ENV:-production}
volumes:
- ${VOL_PATH}/monica:/var/www/html/storage
+10
View File
@@ -0,0 +1,10 @@
COOKBOOK=/git/docker-compose-cookbooks #HELP: cookbooks
VOL_PATH=./data #HELP: volpath
# Monica
MONICA_IMAGE=monica:latest
MONICA_DB_HOST=monica-db
MONICA_DB_USERNAME=monica
MONICA_DB_PASSWORD=changeme
MONICA_APP_ENV=production