Files
web-crm.mcmed.ru/start.sh
Viktoria Polyakova 4fb101c5db Init
2026-01-25 08:57:38 +00:00

14 lines
400 B
Bash
Executable File

#!/bin/bash
# Script to automatically start backend and frontend using systemd
echo "Starting CRM backend service..."
sudo systemctl start crm-backend
echo "Starting CRM frontend service..."
sudo systemctl start crm-frontend
echo "Services started."
echo "Use './stop.sh' to stop services"
echo "Use 'sudo systemctl enable crm-backend' and 'sudo systemctl enable crm-frontend' to enable on boot"