fix: correct paths in marketplace service from /root/aitbc to /opt/aitbc
All checks were successful
systemd-sync / sync-systemd (push) Successful in 5s
security-scanning / audit (push) Successful in 1m22s

This commit is contained in:
2026-03-28 08:23:12 +01:00
parent 0a1fdff6ca
commit b3bce553d1

View File

@@ -5,9 +5,9 @@ After=network.target
[Service]
Type=exec
User=root
WorkingDirectory=/root/aitbc/apps/marketplace-ui
Environment=PATH=/root/aitbc/.venv/bin
ExecStart=/root/aitbc/.venv/bin/python server.py --port 3001
WorkingDirectory=/opt/aitbc/apps/marketplace-ui
Environment=PATH=/opt/aitbc/.venv/bin
ExecStart=/opt/aitbc/.venv/bin/python server.py --port 3001
Restart=always
RestartSec=10