Update create_site.py

This commit is contained in:
fal7w 2023-12-01 16:48:41 +03:00 committed by GitHub
parent 0ef86907a4
commit 508fa8684f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,15 +17,11 @@ def run_docker_command(command):
if __name__ == "__main__":
# Define your Docker Compose command
docker_command = "docker compose --project-name erpnext-one exec backend \
bench new-site --no-mariadb-socket --mariadb-root-password fintech2023 \
--install-app hrms --set-default --install-app rule_management \
--install-app remittance_base --install-app remittance --install-app bulk_remittance \
--install-app remittance_stellar_integration --install-app client_account_management \
--install-app teller_for_erpnext --install-app teller_for_agent \
--install-app remittance_agent_service --install-app payment_management \
--install-app bank_services --install-app remittance_customize \
--install-app remittance_network_manager --install-app erpnext_theme \
--install-app remittance_website --admin-password fintech2023 agent.fintechsys.net"
bench new-site --no-mariadb-socket --mariadb-root-password fintech2023 --install-app hrms --set-default \
--install-app rule_management --install-app remittance_base --install-app remittance --install-app bulk_remittance --install-app remittance_stellar_integration \
--install-app client_account_management --install-app teller_for_erpnext --install-app teller_for_agent \
--install-app remittance_agent_service --install-app payment_management --install-app bank_services --install-app remittance_customize \
--install-app remittance_network_manager --install-app erpnext_theme --install-app remittance_website --admin-password fintech2023 agent.fintechsys.net"
# Call the function with your Docker Compose command
run_docker_command(docker_command)