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.
41 lines
733 B
41 lines
733 B
#!/bin/bash
|
|
|
|
### GENERAL
|
|
|
|
app_customer=''
|
|
app_project=''
|
|
app_project_manager_dir=''
|
|
|
|
### STAGE
|
|
|
|
# The httpdocs folder on your server
|
|
stage_httpdocs_path=''
|
|
|
|
# subpath from httpdocs to your installation of the project
|
|
stage_httpdocs_git_subpath=''
|
|
|
|
### LIVE
|
|
|
|
# The httpdocs folder on your server
|
|
live_httpdocs_path=''
|
|
|
|
# subpath from httpdocs to your installation of the project
|
|
live_httpdocs_git_subpath=''
|
|
|
|
### LOCAL STAGE
|
|
|
|
# url to your project on the local machine
|
|
local_stage_host=''
|
|
|
|
### LOCAL LIVE
|
|
|
|
# url to your project on the local machine
|
|
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
|