This repository has been archived on 2024-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
joomla/bin/new_project.sh
2023-05-20 10:29:45 -07:00

24 lines
428 B
Bash

#!/bin/bash
PROJECTNAME=$(basename "$(pwd)")
SETGITEA=true
# Verify the .env file exists
if [ ! -f ".env" ]; then
echo "Error: The .env file does not exist."
exit 1
fi
# Load environment variables from .env file
set -o allexport
source .env
set +o allexport
# Run Git setup
bash bin/inc_new_project/git_setup.sh
# Run remote Git setup
if [ "$SETGITEA" = "true" ]; then
bash bin/inc_new_project/remote_git_setup.sh
fi