Some checks failed
API Endpoint Tests / test-api-endpoints (push) Successful in 19s
Blockchain Synchronization Verification / sync-verification (push) Failing after 2s
Integration Tests / test-service-integration (push) Successful in 3m1s
Multi-Node Blockchain Health Monitoring / health-check (push) Failing after 7s
P2P Network Verification / p2p-verification (push) Successful in 9s
Python Tests / test-python (push) Successful in 28s
Security Scanning / security-scan (push) Successful in 55s
Systemd Sync / sync-systemd (push) Successful in 17s
Remove default fallback for API_KEY_HASH_SECRET in tenant context middleware and management service, requiring explicit environment variable configuration. Migrate keystore password handling from /etc/aitbc/keystore_password to /etc/aitbc/credentials/keystore_password with 600 permissions. Add load-keystore-secrets.sh pre-start hook and /run/aitbc/secrets/.env environment file to blockchain-node, blockchain
34 lines
753 B
Desktop File
34 lines
753 B
Desktop File
[Unit]
|
|
Description=AITBC Wallet Daemon with Multi-Chain Support
|
|
After=network.target
|
|
Wants=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=root
|
|
Group=root
|
|
WorkingDirectory=/opt/aitbc
|
|
ExecStartPre=/opt/aitbc/scripts/utils/load-keystore-secrets.sh
|
|
EnvironmentFile=/run/aitbc/secrets/.env
|
|
EnvironmentFile=/etc/aitbc/.env
|
|
EnvironmentFile=/etc/aitbc/node.env
|
|
ExecStart=/opt/aitbc/venv/bin/python /opt/aitbc/scripts/wrappers/aitbc-wallet-wrapper.py
|
|
KillMode=mixed
|
|
TimeoutStopSec=5
|
|
PrivateTmp=false
|
|
Restart=on-failure
|
|
RestartSec=10
|
|
StartLimitInterval=60
|
|
StartLimitBurst=3
|
|
|
|
# Logging
|
|
StandardOutput=journal
|
|
StandardError=journal
|
|
SyslogIdentifier=aitbc-wallet-daemon
|
|
|
|
# Allow database writes for SQLite WAL mode
|
|
ProtectSystem=no
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|