sql_gunicorn.sh 163 B

1234567
  1. #!/bin/bash
  2. gunicorn --workers=2 --bind 127.0.0.1:11022 sql_todo:app
  3. # For testing multiple workers
  4. # gunicorn --workers=5 --bind 127.0.0.1:11022 full_todo:app