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.
freqtrade/docs/DEPLOYMENT_SYSTEMD.md

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=, and ExecStart= paths.
  • Set environment variables in the service or link an .env file.

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