|
@@ -0,0 +1,18 @@
|
|
|
|
+#bush install.sh
|
|
|
|
+python -m venv env
|
|
|
|
+
|
|
|
|
+source env/Scripts/activate
|
|
|
|
+
|
|
|
|
+python -m pip install -U pip
|
|
|
|
+
|
|
|
|
+pip install -r requirements.txt
|
|
|
|
+
|
|
|
|
+python manage.py makemigrations
|
|
|
|
+
|
|
|
|
+python manage.py migrate
|
|
|
|
+
|
|
|
|
+python manage.py collectstatic
|
|
|
|
+
|
|
|
|
+python manage.py createsuperuser
|
|
|
|
+
|
|
|
|
+deactivate
|