function djang-create-project

This commit is contained in:
thek4n 2025-04-11 16:23:25 +03:00
parent 1b6e26c902
commit 3368a564b0

View File

@ -9,6 +9,7 @@ readonly project_name="${1}"
mkdir "${project_name}"
cd "${project_name}"
python3 -m virtualenv venv
#shellcheck disable=SC1091
. venv/bin/activate
pip install django
django-admin startproject core .