You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
752 B
752 B
Deployment with Systemd
1. Setup Service File
Copy the example service file to systemd:
sudo cp deploy/systemd/freqtrade-icicibreeze.service.example /etc/systemd/system/freqtrade-icicibreeze.service
2. Edit Configuration
Edit the service file to match your paths and user:
sudo nano /etc/systemd/system/freqtrade-icicibreeze.service
- Update
User=,WorkingDirectory=, andExecStart=paths. - Set environment variables in the service or link an
.envfile.
3. Enable and Start
sudo systemctl daemon-reload
sudo systemctl enable freqtrade-icicibreeze
sudo systemctl start freqtrade-icicibreeze
4. Logs
View logs with journalctl:
sudo journalctl -u freqtrade-icicibreeze -f