23 lines
472 B
Bash
23 lines
472 B
Bash
# Database Configuration
|
|
DB_HOST=mariadb
|
|
DB_PORT=3306
|
|
DB_USER=cms_user
|
|
DB_PASSWORD=change_me_secure_password
|
|
DB_ROOT_PASSWORD=root_secure_password
|
|
DB_NAME=blogging_cms
|
|
|
|
# Application Configuration
|
|
PORT=8080
|
|
SITE_URL=http://localhost:8080
|
|
SESSION_KEY=change_me_to_random_secure_key
|
|
|
|
# Optional: Markdown rendering options
|
|
MARKDOWN_BREAKS=true
|
|
MARKDOWN_TYPOGRAPHER=false
|
|
|
|
# Optional: Email configuration (for future features)
|
|
SMTP_HOST=
|
|
SMTP_PORT=
|
|
SMTP_USER=
|
|
SMTP_PASSWORD=
|