Files
aitbc/systemd/aitbc-ai.service
aitbc c83f51e0b9
Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Has been cancelled
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Documentation Validation / validate-docs (push) Failing after 13s
Documentation Validation / validate-policies-strict (push) Successful in 11s
Integration Tests / test-service-integration (push) Failing after 55s
Python Tests / test-python (push) Failing after 38s
Security Scanning / security-scan (push) Successful in 3m2s
Systemd Sync / sync-systemd (push) Successful in 32s
refactor: reorganize imports to use bounded context structure
- Updated import paths across agent_identity modules to use contexts.agent_identity.domain
- Updated import paths in routers to use context-based service locations
- Fixed database configuration fields in config.py (db_echo, db_pool_size, db_max_overflow, db_pool_recycle, db_pool_pre_ping)
- Changed IdentityVerification table name from IDENTITY_VERIFICATION_TABLE constant to hardcoded "identity_verifications"
- Added BlockchainService
2026-05-13 11:06:32 +02:00

22 lines
543 B
Desktop File

[Unit]
Description=AITBC AI Service
After=network.target redis.service postgresql.service
[Service]
Type=simple
User=root
Group=root
WorkingDirectory=/opt/aitbc/apps/ai-engine
Environment="PATH=/usr/bin:/usr/local/bin:/usr/bin:/bin"
EnvironmentFile=/etc/aitbc/blockchain.env
EnvironmentFile=/etc/aitbc/node.env
ExecStart=/opt/aitbc/venv/bin/python -m uvicorn src.ai_service:app --host 0.0.0.0 --port 8005
Restart=always
RestartSec=5
StandardOutput=journal
StandardError=journal
SyslogIdentifier=aitbc-ai
[Install]
WantedBy=multi-user.target