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

#!/bin/bash
### LOCAL STAGE ENV
# url to stage
local_stage_url=''
# The httpdocs folder on your server
local_stage_httpdocs_path=''
### LOCAL LIVE ENV
# url to live
local_live_url=''
# The httpdocs folder on your server
local_live_httpdocs_path=''
### POSTSCRIPTS
app_dir=
if [ -f '$app_dir/etc/post_config.sh' ]
then
source '$app_dir/etc/post_config.sh'
fi