fix: correct wallet and marketplace service paths
All checks were successful
systemd-sync / sync-systemd (push) Successful in 5s
security-scanning / audit (push) Successful in 1m25s

- Fix wallet service: change wallet-daemon to wallet, use simple_daemon.py
- Fix marketplace service: use agent_marketplace.py on port 8005
- Update Python paths and working directories
This commit is contained in:
2026-03-28 08:27:51 +01:00
parent b3bce553d1
commit 4a4198f10e
2 changed files with 27 additions and 11 deletions

View File

@@ -1,15 +1,18 @@
[Unit]
Description=AITBC Marketplace UI
Description=AITBC Agent-First GPU Marketplace
After=network.target
[Service]
Type=exec
Type=simple
User=root
WorkingDirectory=/opt/aitbc/apps/marketplace-ui
Environment=PATH=/opt/aitbc/.venv/bin
ExecStart=/opt/aitbc/.venv/bin/python server.py --port 3001
Group=root
WorkingDirectory=/opt/aitbc/apps/marketplace
Environment=PYTHONPATH=/opt/aitbc/apps/marketplace:/opt/aitbc/packages/py/aitbc-sdk/src
ExecStart=/usr/bin/python3 /opt/aitbc/apps/marketplace/agent_marketplace.py
Restart=always
RestartSec=10
StandardOutput=journal
StandardError=journal
[Install]
WantedBy=multi-user.target