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.
 
 

35 lines
520 B

#!/bin/bash
### GENERAL
app_customer=""
app_project=""
app_project_manager_dir=""
### STAGE
stage_httpdocs_path=""
stage_httpdocs_git_subpath=""
stage_httpdocs_shopware_subpath=""
### LIVE
live_httpdocs_path=""
live_httpdocs_git_subpath=""
live_httpdocs_shopware_subpath=""
### LOCAL STAGE
local_stage_host=""
### LOCAL LIVE
local_live_host=""
### 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