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.

25 lines
370 B

1 year ago
2 years ago
1 year ago
2 years ago
2 years ago
1 year ago
2 years ago
1 year ago
2 years ago
1 year ago
2 years ago
2 years ago
1 year ago
1 year ago
1 year ago
  1. #!/bin/bash
  2. ### LOCAL STAGE ENV
  3. # url to stage
  4. local_stage_url=''
  5. # The httpdocs folder on your server
  6. local_stage_httpdocs_path=''
  7. ### LOCAL LIVE ENV
  8. # url to live
  9. local_live_url=''
  10. # The httpdocs folder on your server
  11. local_live_httpdocs_path=''
  12. ### POSTSCRIPTS
  13. app_dir=
  14. if [ -f '$app_dir/etc/post_config.sh' ]
  15. then
  16. source '$app_dir/etc/post_config.sh'
  17. fi