mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-24 16:55:08 +00:00
- Created example environment files for MariaDB, production, and Traefik with placeholders for sensitive information. - Implemented backup and site creation scripts to facilitate ERPNext site management. - Developed deployment script to manage the setup of ERPNext, MariaDB, and Traefik services using Docker Compose. - Added logging and validation scripts to assist in monitoring and ensuring correct configuration. - Included stop script to manage service shutdowns gracefully. - Enhanced error handling and user prompts for better usability.
36 lines
495 B
Text
36 lines
495 B
Text
# Environment Variables
|
|
.env
|
|
|
|
# mounted volume
|
|
sites
|
|
|
|
development/*
|
|
!development/README.md
|
|
!development/installer.py
|
|
!development/apps-example.json
|
|
!development/vscode-example/
|
|
|
|
# Pycharm
|
|
.idea
|
|
|
|
# VS Code
|
|
.vscode/**
|
|
!.vscode/extensions.json
|
|
|
|
# VS Code devcontainer
|
|
.devcontainer
|
|
*.code-workspace
|
|
|
|
# Python
|
|
*.pyc
|
|
__pycache__
|
|
venv
|
|
|
|
# NodeJS
|
|
node_modules
|
|
|
|
# Production environment files (never commit secrets)
|
|
production/*.env
|
|
production/generated-compose.yaml
|
|
production/logs/
|
|
production/backups/
|