11 lines
207 B
Bash
Executable File
11 lines
207 B
Bash
Executable File
#!/bin/bash
|
|
cd /root/homewebsite
|
|
|
|
# Build the site
|
|
npm run build
|
|
|
|
# Restart the service
|
|
systemctl restart juchatz-web.service
|
|
|
|
echo "Website rebuilt and restarted at $(date)" >> /var/log/website-startup.log
|