install.sh 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. #!/bin/bash
  2. if [ -f bin/install.cfg ]; then
  3. echo "File install.cfg already exists"
  4. else
  5. attempts=0
  6. max_attempts=3
  7. while [ $attempts -lt $max_attempts ]; do
  8. read -p "File install.cfg does not exist. Do you want to create it? (y/n) [default: y]: " answer
  9. if [[ "$answer" == "y" || "$answer" == "Y" ]]; then
  10. cp bin/install.cfg.example bin/install.cfg
  11. echo "File install.cfg was successfully created"
  12. echo "Restart install.sh script after editing install.cfg"
  13. exit 0
  14. elif [[ "$answer" == "n" || "$answer" == "N" ]]; then
  15. echo "Error: You need to create the file manually and then continue."
  16. echo "cp /bin/install.cfg.example to /bin/install.cfg with your settings."
  17. exit 1
  18. else
  19. attempts=$((attempts + 1))
  20. echo "Invalid input. Please enter 'y' or 'n'. Attempt $attempts of $max_attempts."
  21. fi
  22. done
  23. echo "Exceeded maximum attempts. Exiting."
  24. exit 1
  25. fi
  26. source bin/install.cfg
  27. # Function to check if a repository exists and perform git pull or git clone
  28. update_repository() {
  29. local repo_url="$1"
  30. local repo_dir="$2"
  31. local repo_branch="$3"
  32. if [ -d "$repo_dir" ]; then
  33. # If the directory exists, then do a git pull
  34. echo "Updating $repo_dir..."
  35. cd "$repo_dir" || exit
  36. git checkout $repo_branch
  37. git pull
  38. cd - || exit
  39. else
  40. # If the directory does not exist, then do a git clone
  41. echo "Cloning $repo_url into $repo_dir..."
  42. git clone -b "$repo_branch" "$repo_url" "$repo_dir"
  43. fi
  44. }
  45. # Update repositories
  46. update_repository "$TICKETS" "tickets" "$TICKETS_BRANCH"
  47. update_repository "$BACKEND" "dbsynce" "$BACKEND_BRANCH"
  48. update_repository "$CONFIG" "conf" "$CONFIG_BRANCH"
  49. update_repository "$DESIGN_TEMPLATE" "design_template" "$DESIGN_TEMPLATE_BRANCH"
  50. update_repository "$WEBSERVICE_RUNNING" "webservice_running" "$WEBSERVICE_RUNNING_BRANCH"
  51. update_repository "$LANDING" "landing" "$LANDING_BRANCH"
  52. update_repository "$USER_MODEL" "user" "$USER_MODEL_BRANCH"
  53. git pull
  54. # Create a Python virtual environment and activate it
  55. python3 -m venv venv
  56. source venv/bin/activate
  57. # Upgrade pip and install requirements
  58. pip install --upgrade pip
  59. pip install -r requirements.txt
  60. # Checking for core/settings_vars.py
  61. if [ -f core/settings_vars.py ]; then
  62. echo "File settings_vars.py already exists"
  63. else
  64. cp core/_settings_vars.py core/settings_vars.py
  65. echo "File settings_vars.py was successfully created"
  66. echo "Write the connection settings for the PostgreSQL database."
  67. echo "Restart install.sh script after editing."
  68. exit
  69. fi
  70. # Checking for sharix_open.service
  71. if [ -f conf/sharix_open.service ]; then
  72. echo "File sharix_open.service already exists"
  73. else
  74. cp conf/sharix_open.service.example conf/sharix_open.service
  75. echo "File sharix_open.service was successfully created"
  76. echo "Write the settings for systemd service."
  77. echo "Restart install.sh script after editing."
  78. exit
  79. fi
  80. # Run Django migrations and other commands
  81. python manage.py makemigrations dbsynce tickets webservice_running landing user
  82. python manage.py migrate
  83. python manage.py collectstatic -l --no-input
  84. # Seeding data
  85. python manage.py create_metaservice_default_data
  86. if (($GENERATE_TEST_USERS)); then
  87. python manage.py create_metaservice_test_users
  88. fi
  89. #cp conf/sharix_open.service /etc/systemd/system/