0

I want to automatically start huey (a background task manager) going when I deploy a Django site on Digital Ocean's "App" platform. It provides a "run command" box where one can input commands when deploying (after the server is built).

I cannot work out why this isn't working:

gunicorn --worker-tmp-dir /dev/shm core.wsgi; python manage.py run_huey

I've tried the "&&" separator but that doesn't work either. The "python manage.py run_huey" command just doesn't get run.

Jack
  • 307
  • 4
  • 15

1 Answers1

0

Very minor mistake. It's a single "&" in between the two commands.

Sunderam Dubey
  • 1
  • 11
  • 20
  • 40
Jack
  • 307
  • 4
  • 15