-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanage_django_db.sh
47 lines (43 loc) · 1.31 KB
/
manage_django_db.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
#/bin/bash
source /bin/colors
### CHECK PYTHON MODULES ARE INSTALLED ###
function check_module() {
python -c "import ${1}" 2> /dev/null
INSTALLED=$?
if [ $INSTALLED == 1 ]; then
echo -e ${BYELLOW}
echo -e ${1} not found ${BGREEN}
echo installing ${1}...
echo -e ${NIL}
pip install ${1}
# echo -e ${BGREEN}" ${successfully downloaded} # SHOULD _ACTUALLY_ check stderr to see if it DID successfully download!
fi
}
### RUN THE PROGRAM ###
# for formatting the settings.py file.
check_module autopep8
echo -e "${BYELLOW}Select A Database Engine to Use: ${NIL}"
PS3="Enter a corresponding number: "
select db_engine in postgresql mysql sqlite3 oracle SKIP
do
case $db_engine in
postgresql)
. manage_django_db_postgres postgresql
break
;;
mysql)
echo -e ${BRED}"only postgres is currently supported!"${NIL}
break
;;
sqlite3)
echo -e ${BRED}"only postgres is currently supported!"${NIL}
break
;;
oracle)
echo -e ${BRED}"only postgres is currently supported!"${NIL}
break
;;
*)
echo 'Please select an option'
esac
done