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

#!/bin/bash
### GENERAL
app_customer=''
app_project=''
app_project_manager_dir=''
### STAGE
# stage domain
stage_domain=''
# url to stage
stage_url=''
# The httpdocs folder on your server
stage_httpdocs_path=''
### LIVE
# live domain
live_domain=''
# url to live
live_url=''
# The httpdocs folder on your server
live_httpdocs_path=''
### LOCAL STAGE
# url to your project on the local machine
local_url=''
### LOCAL LIVE
# url to your project on the local machine
local_url=''
### POST SCRIPT
app_dir='$app_project_manager_dir/data/$customer/$project'
if [ -f '$app_dir/etc/post_config.sh' ]
then
source '$app_dir/etc/post_config.sh'
fi