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.

47 lines
657 B

2 years ago
2 years ago
2 years ago
2 years ago
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. # stage domain
  8. stage_domain=''
  9. # url to stage
  10. stage_url=''
  11. # The httpdocs folder on your server
  12. stage_httpdocs_path=''
  13. ### LIVE
  14. # live domain
  15. live_domain=''
  16. # url to live
  17. live_url=''
  18. # The httpdocs folder on your server
  19. live_httpdocs_path=''
  20. ### LOCAL STAGE
  21. # url to your project on the local machine
  22. local_url=''
  23. ### LOCAL LIVE
  24. # url to your project on the local machine
  25. local_url=''
  26. ### POST SCRIPT
  27. app_dir='$app_project_manager_dir/data/$customer/$project'
  28. if [ -f '$app_dir/etc/post_config.sh' ]
  29. then
  30. source '$app_dir/etc/post_config.sh'
  31. fi