Skip to content

Commit

Permalink
fix: update er and check if ddev in installed
Browse files Browse the repository at this point in the history
  • Loading branch information
arturu committed Dec 30, 2024
1 parent 96a8d7c commit 5e9ba68
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/diagramma-er.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions scripts/oituolia_ddev_installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
declare -gr timestamp_start=$(date +%s)

#-[ Impostazioni ]----------------
# Abort this entire script if any one command fails.
set -e
loggingInFile=0
notificationDisplayLevelNotice=1
notificationDisplayLevelSuccess=1
Expand Down Expand Up @@ -159,6 +161,10 @@ echo "# #"
echo " ###########################"`tput sgr0`
echo " "

if ! command -v ddev >/dev/null; then
echo "DDEV needs to be installed. Visit https://ddev.com/get-started for instructions."
exit 1
fi

# Nome del progetto
read -r -p "Nome del progetto (fomato FQDN host) [a-z0-9] (mia-scuola): " project_name
Expand Down

0 comments on commit 5e9ba68

Please sign in to comment.