From 86ad8c5b5c515b78fe690871ca439b467db63fcd Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sat, 28 Mar 2026 15:00:41 -0700 Subject: [PATCH] Add exports to env setup. --- example.env | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/example.env b/example.env index 36ed8df..59a882a 100644 --- a/example.env +++ b/example.env @@ -1,17 +1,17 @@ # Variables for fast-access of production server. -PROD_HOST=example.com -PROD_PORT=2222 -PROD_USER=user +export PROD_HOST=example.com +export PROD_PORT=2222 +export PROD_USER=user -PROD_GIT_HOST=git.example.com -PROD_GIT_PORT=8080 -PROD_GIT_USER=git +export PROD_GIT_HOST=git.example.com +export PROD_GIT_PORT=8080 +export PROD_GIT_USER=git -PROD_DATA_HOST=sftp.example.com -PROD_DATA_PORT=2200 -PROD_DATA_USER=data -PROD_DATA_DIR=/srv/sftp +export PROD_DATA_HOST=sftp.example.com +export PROD_DATA_PORT=2200 +export PROD_DATA_USER=data +export PROD_DATA_DIR=/srv/sftp PROG="$(basename -- "${BASH_SOURCE[0]}")" echo "'`date` - $PROG' completed!"