Update setup.sh
This commit is contained in:
parent
c81dcacabf
commit
1e8062c1f0
8
setup.sh
8
setup.sh
|
@ -20,3 +20,11 @@ else
|
||||||
echo "${DIR} Directory Created"
|
echo "${DIR} Directory Created"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo Do you want ceate credentials for super user (Y/N) ?
|
||||||
|
read create
|
||||||
|
create=${create^^}
|
||||||
|
|
||||||
|
if [ "$create" == "Y" ]; then
|
||||||
|
### Take action if user want to create ###
|
||||||
|
python3 manage.py createsuperuser
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in New Issue