19 lines
399 B
Desktop File
19 lines
399 B
Desktop File
[Unit]
|
|
Description=ChatMaps Frontend Server
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=root
|
|
Group=root
|
|
Restart=on-failure
|
|
RestartSec=10
|
|
WorkingDirectory=/root/ChatMaps/frontend-next
|
|
ExecStartPre=/usr/bin/git pull
|
|
ExecStartPre=/usr/bin/git checkout main
|
|
ExecStartPre=/usr/bin/npm install
|
|
ExecStartPre=/usr/bin/npm run build
|
|
ExecStart=/usr/bin/npm run start
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |