Ein für Shopware 6 vorbereitet Systemmanagment.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
520 B

  1. #!/bin/bash
  2. ### GENERAL
  3. app_customer=""
  4. app_project=""
  5. app_project_manager_dir=""
  6. ### STAGE
  7. stage_httpdocs_path=""
  8. stage_httpdocs_git_subpath=""
  9. stage_httpdocs_shopware_subpath=""
  10. ### LIVE
  11. live_httpdocs_path=""
  12. live_httpdocs_git_subpath=""
  13. live_httpdocs_shopware_subpath=""
  14. ### LOCAL STAGE
  15. local_stage_host=""
  16. ### LOCAL LIVE
  17. local_live_host=""
  18. ### POST SCRIPT
  19. app_dir="$app_project_manager_dir/data/$customer/$project"
  20. if [ -f "$app_dir/etc/post_config.sh" ]
  21. then
  22. source "$app_dir/etc/post_config.sh"
  23. fi