-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.preprod.example
More file actions
38 lines (32 loc) · 1.19 KB
/
Copy path.env.preprod.example
File metadata and controls
38 lines (32 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# .env.preprod.example
#
# Template for the preprod environment used during the v5 recette.
# Copy to .env.preprod (gitignored), fill in real values, never commit.
#
# Reference: docs/specs/2026-05-19-fondations-partie-double-slice1.md §16.4
APP_NAME=AgoraGestion
APP_ENV=preprod
APP_KEY= # generate with `php artisan key:generate --show`
# IMPORTANT: do NOT copy the prod APP_KEY here.
# Encrypted columns from a prod clone are expected to be unreadable.
APP_DEBUG=false
APP_URL=https://preprod.example.com
LOG_CHANNEL=daily
LOG_LEVEL=debug
# Database
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=agora_preprod
DB_USERNAME=preprod_user
DB_PASSWORD=
# Bridging flags — block side-effects during recette
MAIL_MAILER=log # never send real emails from preprod
HELLOASSO_WEBHOOK_DISABLED=true # ignore HelloAsso webhook callbacks
INCOMING_MAIL_DISABLED=true # disable IMAP polling for incoming documents
# Session / cache
SESSION_DRIVER=database
SESSION_LIFETIME=120
CACHE_STORE=database
QUEUE_CONNECTION=sync
# Feature flag — partie double engine (read by config/compta.php)