16 lines
497 B
Plaintext
16 lines
497 B
Plaintext
|
|
# ============================================
|
||
|
|
# DoliMiddlewareApi - Environment Variables
|
||
|
|
# ============================================
|
||
|
|
# Copy this file to .env and fill in the values
|
||
|
|
# NEVER commit .env with real secrets to git
|
||
|
|
|
||
|
|
# JWT Secret: must be at least 32 characters
|
||
|
|
# Generate one with: openssl rand -base64 48
|
||
|
|
JWT_SECRET=CHANGE-ME-TO-A-LONG-RANDOM-STRING-AT-LEAST-32-CHARS
|
||
|
|
|
||
|
|
# MySQL
|
||
|
|
MYSQL_ROOT_PASSWORD=rootpassword
|
||
|
|
MYSQL_PASSWORD=12345678
|
||
|
|
|
||
|
|
# Dolibarr Admin
|
||
|
|
DOLI_ADMIN_PASSWORD=12345678
|