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.

42 lines
578 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
  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
  21. # url to your project on the local machine
  22. local_url=''
  23. ### POST SCRIPT
  24. app_dir='$app_project_manager_dir/data/$customer/$project'
  25. if [ -f '$app_dir/etc/post_config.sh' ]
  26. then
  27. source '$app_dir/etc/post_config.sh'
  28. fi