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.

41 lines
733 B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. #!/bin/bash
  2. ### GENERAL
  3. app_customer=""
  4. app_project=""
  5. app_project_manager_dir=""
  6. ### STAGE
  7. # The httpdocs folder on your server
  8. stage_httpdocs_path=""
  9. # subpath from httpdocs to your installation of the project
  10. stage_httpdocs_git_subpath=""
  11. ### LIVE
  12. # The httpdocs folder on your server
  13. live_httpdocs_path=""
  14. # subpath from httpdocs to your installation of the project
  15. live_httpdocs_git_subpath=""
  16. ### LOCAL STAGE
  17. # url to your project on the local machine
  18. local_stage_host=""
  19. ### LOCAL LIVE
  20. # url to your project on the local machine
  21. local_live_host=""
  22. ### POST SCRIPT
  23. app_dir="$app_project_manager_dir/data/$customer/$project"
  24. if [ -f "$app_dir/etc/post_config.sh" ]
  25. then
  26. source "$app_dir/etc/post_config.sh"
  27. fi