2

I installed Django-socketio because it seems like the best way to implement chat by myself. The problem I have is that when I run python manage.py runserver_socketio host:port it runs and I can't close the terminal or it will stop working, how can I get around that?

rofls
  • 4,993
  • 3
  • 27
  • 37

1 Answers1

0

I solved the same issue with command nohup.

So you start the server with nohup python manage.py runserver_socketio host:port & (& to start in backgroud). The result is stored in a nohup.out file...

  • Please tell me how to run during devlopment? python manage.py runserver_socketio host:port what are the host and port values? and when we want to run on production, what would be the values then. – A.J. Aug 27 '14 at 09:21