Features: 1) Update reboot script to improve readability in service status messages; 2) Specify application name as "eVibes" in final confirmation message;

Fixes: 1) Standardize spacing in spinner commands for consistency; 2) Correct alignment of service lifecycle commands;

Extra: Adjust wording for better clarity and uniformity in reboot.sh script.
This commit is contained in:
Egor Pavlovich Gorbunov 2025-06-16 14:09:37 +03:00
parent 5c12391f61
commit e7ba7dde0f
5 changed files with 6 additions and 6 deletions

0
scripts/Unix/export-environment-file.sh Normal file → Executable file
View file

0
scripts/Unix/generate-environment-file.sh Normal file → Executable file
View file

0
scripts/Unix/install.sh Normal file → Executable file
View file

View file

@ -29,11 +29,11 @@ run_with_spinner() {
}
echo
run_with_spinner "docker compose down --ansi never" "Stopping services (down)"
run_with_spinner "docker compose up -d --build --ansi never" "Rebuilding & starting services"
run_with_spinner "docker compose --ansi never down" "Stopping services"
run_with_spinner "docker compose --ansi never up -d --build" "Rebuilding & starting services"
run_with_spinner "docker compose exec app poetry run python manage.py migrate --no-input" "Applying database migrations"
run_with_spinner "docker compose exec app poetry run python manage.py collectstatic --no-input" "Collecting static files"
run_with_spinner "docker compose exec app poetry run python manage.py set_default_caches" "Setting default caches"
run_with_spinner "docker system prune -f" "Cleaning up unused Docker data"
echo -e "\e[1mAll done! Your application is up and running.\e[0m"
echo -e "\e[1mAll done! eVibes is up and running.\e[0m"

0
scripts/Unix/run.sh Normal file → Executable file
View file