-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbootstrap.sh
executable file
·117 lines (103 loc) · 2.92 KB
/
bootstrap.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#!/usr/bin/env bash
set -e
# Define variables
BASE_URL="https://github.com/cgsdev0/bash-stack/releases/latest/download"
ZIP_NAME="template.zip"
# Function to display usage instructions
show_usage() {
echo "Usage: $0 <project-name>"
}
# Function to download and extract the framework zip file
download_framework() {
echo "Downloading the framework..."
if ! curl -sSL "$BASE_URL/$ZIP_NAME" -o "$TMP_DIR/$ZIP_NAME"; then
echo "Error: Failed to download the framework." 1>&2
rm -rf "$TMP_DIR"
exit 1
fi
echo "Extracting the framework..."
if ! unzip -q "$TMP_DIR/$ZIP_NAME" -d "$TMP_DIR"; then
echo "Error: Failed to extract the framework." 1>&2
rm -rf "$TMP_DIR"
exit 1
fi
rm "$TMP_DIR/$ZIP_NAME"
}
# Function to check if the project name is valid
is_valid_project_name() {
local name="$1"
if [[ ! "$name" =~ ^[a-zA-Z0-9_-]+$ ]]; then
return 1
fi
return 0
}
# Function to set up a new project
setup_project() {
echo "Creating a new project '$PROJECT_NAME'..."
cp -r "$TMP_DIR" "./$PROJECT_NAME"
cd "$PROJECT_NAME"
echo "PROJECT_NAME=${PROJECT_NAME}" > "config.sh"
if [[ ! -z "$TAILWIND" ]]; then
echo "TAILWIND=on" >> "config.sh"
fi
echo "Project '$PROJECT_NAME' is ready!"
echo ""
echo ""
echo "You can get started by doing the following:"
echo ""
echo -e "\tcd '$PROJECT_NAME'"
echo -e "\t./start.sh"
}
# Main script
main() {
TMP_DIR=$(mktemp -d)
# Check if a project name is provided as an argument
if [ -z "$1" ]; then
# we need to connect to /dev/tty in order to read stdin
if [ ! -t 0 ]; then
if [ ! -t 1 ]; then
echo "Error: Unable to run interactively!" 1>&2
exit 1
fi
read -p "Enter a project name: " PROJECT_NAME </dev/tty
read -n 1 -p "Would you like to use tailwind? (y/n) " TAILWIND_CHOICE </dev/tty
echo
else
read -p "Enter a project name: " PROJECT_NAME
read -n 1 -p "Would you like to use tailwind? (y/n) " TAILWIND_CHOICE
echo
fi
# Prompt the user for the project name interactively
if [ -z "$PROJECT_NAME" ]; then
show_usage
rm -rf "$TMP_DIR"
exit 1
fi
else
PROJECT_NAME="$1"
fi
# Check if the project name is valid
if ! is_valid_project_name "$PROJECT_NAME"; then
echo "Error: Invalid project name. Project name can only contain letters, numbers, dashes, and underscores." 1>&2
rm -rf "$TMP_DIR"
exit 1
fi
# Check if the project directory already exists
if [ -d "$PROJECT_NAME" ]; then
echo "Error: Project directory '$PROJECT_NAME' already exists." 1>&2
rm -rf "$TMP_DIR"
exit 1
fi
if [[ "$TAILWIND_CHOICE" == "y" ]] || [[ "$TAILWIND_CHOICE" == "Y" ]]; then
ZIP_NAME="template-tailwind.zip"
TAILWIND=on
fi
# Download and extract the framework
download_framework
# Set up the project
setup_project
# Clean up temporary directory
rm -rf "$TMP_DIR"
}
# Run the main script
main "$@"