This commit is contained in:
Viktoria Polyakova
2026-01-25 08:57:38 +00:00
commit 4fb101c5db
7657 changed files with 497012 additions and 0 deletions

13
start.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/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"