#!/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