|
@@ -1,16 +1,41 @@
|
|
#!/bin/bash
|
|
#!/bin/bash
|
|
|
|
|
|
-git clone -b master https://git.sharix-app.org/ShariX_Open/sharix-open-tickets.git tickets
|
|
|
|
-git clone -b metasynced_module https://git.sharix-app.org/ShariX_Open/sharix-open-backend.git metaservicesynced
|
|
|
|
-git clone -b webinterface https://git.sharix-app.org/ShariX_Open/sharix-open-webadmin.git SharixAdmin/templates/SharixAdmin
|
|
|
|
-git clone -b master https://git.sharix-app.org/ShariX_Open/sharix-open-config.git conf
|
|
|
|
|
|
+# Function to check if a repository exists and perform git pull or git clone
|
|
|
|
+update_repository() {
|
|
|
|
+ local repo_url="$1"
|
|
|
|
+ local repo_dir="$2"
|
|
|
|
+ local repo_branch="$3"
|
|
|
|
|
|
|
|
+ if [ -d "$repo_dir" ]; then
|
|
|
|
+ # If the directory exists, then do a git pull
|
|
|
|
+ echo "Updating $repo_dir..."
|
|
|
|
+ cd "$repo_dir" || exit
|
|
|
|
+ git pull
|
|
|
|
+ cd - || exit
|
|
|
|
+ else
|
|
|
|
+ # If the directory does not exist, then do a git clone
|
|
|
|
+ echo "Cloning $repo_url into $repo_dir..."
|
|
|
|
+ git clone -b "$repo_branch" "$repo_url" "$repo_dir"
|
|
|
|
+ fi
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+# Update repositories
|
|
|
|
+update_repository "https://git.sharix-app.org/ShariX_Open/sharix-open-tickets.git" "tickets" "master"
|
|
|
|
+update_repository "https://git.sharix-app.org/ShariX_Open/sharix-open-backend.git" "metaservicesynced" "metasynced_module"
|
|
|
|
+update_repository "https://git.sharix-app.org/ShariX_Open/sharix-open-webadmin.git" "SharixAdmin/templates/SharixAdmin" "webinterface"
|
|
|
|
+update_repository "https://git.sharix-app.org/ShariX_Open/sharix-open-config.git" "conf" "master"
|
|
|
|
+
|
|
|
|
+git pull
|
|
|
|
+
|
|
|
|
+# Create a Python virtual environment and activate it
|
|
python3 -m venv venv
|
|
python3 -m venv venv
|
|
source venv/bin/activate
|
|
source venv/bin/activate
|
|
|
|
|
|
|
|
+# Upgrade pip and install requirements
|
|
pip install --upgrade pip
|
|
pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
pip install -r requirements.txt
|
|
|
|
|
|
|
|
+# Checking for core/config.py
|
|
if [ -f core/config.py ]; then
|
|
if [ -f core/config.py ]; then
|
|
echo "File config.py already created"
|
|
echo "File config.py already created"
|
|
else
|
|
else
|
|
@@ -18,9 +43,9 @@ else
|
|
echo "File config.py was successfully created"
|
|
echo "File config.py was successfully created"
|
|
fi
|
|
fi
|
|
|
|
|
|
|
|
+# Run Django migrations and other commands
|
|
python manage.py makemigrations SharixAdmin metaservicesynced tickets
|
|
python manage.py makemigrations SharixAdmin metaservicesynced tickets
|
|
python manage.py migrate
|
|
python manage.py migrate
|
|
python manage.py collectstatic -l --no-input
|
|
python manage.py collectstatic -l --no-input
|
|
-python manage.py createsuperuser
|
|
|
|
|
|
|
|
#cp conf/sharix_open.service /etc/systemd/system/
|
|
#cp conf/sharix_open.service /etc/systemd/system/
|