```bash
nohup gunicorn -w 1 -b 127.0.0.1:5000 main:app > output.log 2>&1 &
ps aux | grep gunicorn
flask --app main.py --debug run
source venv/bin/activate.fish
```