mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-18 14:15:09 +00:00
- Created example environment files for MariaDB and production settings. - Implemented backup script for ERPNext sites with options for file inclusion, compression, and encryption. - Developed site creation script to streamline ERPNext site setup with admin password handling. - Added deployment script to manage the deployment of ERPNext, MariaDB, and Traefik services. - Introduced log viewing script for monitoring ERPNext services. - Implemented stop script to manage stopping of ERPNext and its dependencies. - Added validation script to check environment configuration for common issues and security best practices.
16 lines
No EOL
687 B
Text
16 lines
No EOL
687 B
Text
# MariaDB Configuration for ERPNext Production
|
|
# This database will be shared across all ERPNext benches on this server
|
|
|
|
# ============================================
|
|
# Database Password
|
|
# ============================================
|
|
# IMPORTANT: Change this to a strong password
|
|
# This password will be used for the MariaDB root user
|
|
DB_PASSWORD=CHANGEME_strong_password_must_match_production_env
|
|
|
|
# SECURITY NOTE:
|
|
# - Use a strong password with at least 16 characters
|
|
# - Include uppercase, lowercase, numbers, and special characters
|
|
# - Do not use common words or patterns
|
|
# - Store this password securely (use a password manager)
|
|
# - This same password must be set in production.env |