# /etc/systemd/system/quotes.service [Unit] Description=Flask Quote and API (Gunicorn) After=network.target [Service] User=yourusername WorkingDirectory=/home/yourusername/quote-of-the-day ExecStart=/home/yourusername/quote-of-the-day/venv/bin/gunicorn quotes:app --workers 2 --bind 0.0.0.0:5051 Restart=always RestartSec=5 Environment="PATH=/home/yourusername/quote-of-the-day/venv/bin:/usr/bin" Environment="VIRTUAL_ENV=/home/yourusername/quote-of-the-day/venv" Environment="FLASK_ENV=production" [Install] WantedBy=multi-user.target