refactor: rebrand project to CRM SITECONSEIL (SARL SITECONSEIL)
- Rename all references from E-Cosplay/Ecosplay to SITECONSEIL - Update entity from Association to SARL SITECONSEIL (Siret: 418664058) - Update address to 27 rue Le Serurier, 02100 Saint-Quentin - Update emails: contact@siteconseil.fr, rgpd@siteconseil.fr - Update hosting from GCP to OVHcloud (Roubaix, Gravelines, Strasbourg, Paris) - Update legal pages: mentions legales, CGV, RGPD, conformite, hebergement, cookies, CGU - Add tarifs page with tabs: Site Internet, E-Commerce, Nom de domaine, Esy-Mail, Esy-Mailer, Esy-Tchat, Esy-Meet, Esy-Defender - Add Discord webhook notification workflow - Disable deploy and sonarqube workflows - Update OAuth Keycloak realm to master - Update logo references to logo_facture.png - Remove forced image sizing in Liip Imagine filters - Update SonarQube project key and badge token - Update tribunal competent to Saint-Quentin - Move tarif tabs JS to app.js (CSP compliance) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -3,7 +3,7 @@ services:
|
||||
build:
|
||||
context: ./docker/php/dev
|
||||
dockerfile: Dockerfile
|
||||
container_name: crm_ecosplay_php
|
||||
container_name: crm_siteconseil_php
|
||||
restart: unless-stopped
|
||||
group_add:
|
||||
- "${DOCKER_GID:-989}"
|
||||
@@ -20,24 +20,24 @@ services:
|
||||
|
||||
database:
|
||||
image: postgres:16-alpine
|
||||
container_name: crm_ecosplay_database
|
||||
container_name: crm_siteconseil_database
|
||||
environment:
|
||||
POSTGRES_USER: app
|
||||
POSTGRES_PASSWORD: secret
|
||||
POSTGRES_DB: crm_ecosplay
|
||||
POSTGRES_DB: crm_siteconseil
|
||||
ports:
|
||||
- "5432:5432"
|
||||
volumes:
|
||||
- db-data:/var/lib/postgresql/data
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U app -d crm_ecosplay"]
|
||||
test: ["CMD-SHELL", "pg_isready -U app -d crm_siteconseil"]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
|
||||
pgbouncer:
|
||||
image: edoburu/pgbouncer
|
||||
container_name: crm_ecosplay_pgbouncer
|
||||
container_name: crm_siteconseil_pgbouncer
|
||||
volumes:
|
||||
- ./docker/pgsql/pgbouncer-dev.ini:/etc/pgbouncer/pgbouncer.ini:ro
|
||||
- ./docker/pgsql/userlist-dev.txt:/etc/pgbouncer/userlist.txt:ro
|
||||
@@ -54,21 +54,21 @@ services:
|
||||
|
||||
redis:
|
||||
image: redis:7-alpine
|
||||
container_name: crm_ecosplay_redis
|
||||
command: redis-server --requirepass crm_ecosplay
|
||||
container_name: crm_siteconseil_redis
|
||||
command: redis-server --requirepass crm_siteconseil
|
||||
ports:
|
||||
- "6379:6379"
|
||||
volumes:
|
||||
- redis-data:/data
|
||||
healthcheck:
|
||||
test: ["CMD", "redis-cli", "-a", "crm_ecosplay", "ping"]
|
||||
test: ["CMD", "redis-cli", "-a", "crm_siteconseil", "ping"]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
|
||||
caddy:
|
||||
image: caddy:2-alpine
|
||||
container_name: crm_ecosplay_caddy
|
||||
container_name: crm_siteconseil_caddy
|
||||
ports:
|
||||
- "8000:80"
|
||||
volumes:
|
||||
@@ -81,7 +81,7 @@ services:
|
||||
build:
|
||||
context: ./docker/php/dev
|
||||
dockerfile: Dockerfile
|
||||
container_name: crm_ecosplay_messenger
|
||||
container_name: crm_siteconseil_messenger
|
||||
command: php bin/console messenger:consume async -vv
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
@@ -96,7 +96,7 @@ services:
|
||||
|
||||
bun:
|
||||
image: oven/bun:alpine
|
||||
container_name: crm_ecosplay_bun
|
||||
container_name: crm_siteconseil_bun
|
||||
working_dir: /app
|
||||
volumes:
|
||||
- .:/app
|
||||
@@ -107,18 +107,18 @@ services:
|
||||
|
||||
mailpit:
|
||||
image: axllent/mailpit
|
||||
container_name: crm_ecosplay_mailpit
|
||||
container_name: crm_siteconseil_mailpit
|
||||
ports:
|
||||
- "1025:1025"
|
||||
- "8025:8025"
|
||||
|
||||
vault:
|
||||
image: hashicorp/vault:latest
|
||||
container_name: crm_ecosplay_vault
|
||||
container_name: crm_siteconseil_vault
|
||||
cap_add:
|
||||
- IPC_LOCK
|
||||
environment:
|
||||
VAULT_DEV_ROOT_TOKEN_ID: crm_ecosplay
|
||||
VAULT_DEV_ROOT_TOKEN_ID: crm_siteconseil
|
||||
VAULT_DEV_LISTEN_ADDRESS: 0.0.0.0:8200
|
||||
ports:
|
||||
- "8200:8200"
|
||||
@@ -127,7 +127,7 @@ services:
|
||||
|
||||
ngrok:
|
||||
image: ngrok/ngrok:latest
|
||||
container_name: crm_ecosplay_ngrok
|
||||
container_name: crm_siteconseil_ngrok
|
||||
command: http caddy:80 --log stdout
|
||||
environment:
|
||||
NGROK_AUTHTOKEN: GXtZtKtRxRF5TFV5pCKD_25f1ALUyQQ9LkyQJgv1dr
|
||||
@@ -138,7 +138,7 @@ services:
|
||||
|
||||
ngrok-sync:
|
||||
image: curlimages/curl:latest
|
||||
container_name: crm_ecosplay_ngrok_sync
|
||||
container_name: crm_siteconseil_ngrok_sync
|
||||
user: "0:0"
|
||||
volumes:
|
||||
- .:/app
|
||||
@@ -149,9 +149,9 @@ services:
|
||||
|
||||
meilisearch:
|
||||
image: getmeili/meilisearch:latest
|
||||
container_name: crm_ecosplay_meilisearch
|
||||
container_name: crm_siteconseil_meilisearch
|
||||
environment:
|
||||
MEILI_MASTER_KEY: crm_ecosplay
|
||||
MEILI_MASTER_KEY: crm_siteconseil
|
||||
MEILI_ENV: development
|
||||
ports:
|
||||
- "7700:7700"
|
||||
@@ -162,7 +162,7 @@ services:
|
||||
build:
|
||||
context: ./docker/cron
|
||||
dockerfile: Dockerfile
|
||||
container_name: crm_ecosplay_cron
|
||||
container_name: crm_siteconseil_cron
|
||||
restart: unless-stopped
|
||||
group_add:
|
||||
- "${DOCKER_GID:-989}"
|
||||
@@ -177,7 +177,7 @@ services:
|
||||
|
||||
redisinsight:
|
||||
image: redis/redisinsight:latest
|
||||
container_name: crm_ecosplay_redisinsight
|
||||
container_name: crm_siteconseil_redisinsight
|
||||
ports:
|
||||
- "5540:5540"
|
||||
depends_on:
|
||||
|
||||
Reference in New Issue
Block a user