| 123456789101112131415161718192021222324 |
- [Unit]
- Description=SmartBotic CRM LLM Service
- Documentation=https://github.com/smartbotic/smartbotic-crm
- After=network.target smartbotic-crm-database.service
- Requires=smartbotic-crm-database.service
- [Service]
- Type=simple
- WorkingDirectory=/data/smartbotic-crm
- ExecStart=/data/smartbotic-crm/build/llm/smartbotic-crm-llm
- Restart=on-failure
- RestartSec=5
- StandardOutput=journal
- StandardError=journal
- TimeoutStopSec=10
- # Environment
- Environment="SMARTBOTIC_LLM_ADDRESS=0.0.0.0"
- Environment="SMARTBOTIC_LLM_PORT=50152"
- Environment="SMARTBOTIC_LLM_DATABASE_ADDRESS=localhost:50151"
- Environment="SMARTBOTIC_LLM_LOG_LEVEL=info"
- [Install]
- WantedBy=default.target
|