python - Starting django-socketio in production -
i installed django-socketio because seems best way implement chat myself. problem have when run python manage.py runserver_socketio host:port
runs , can't close terminal or stop working, how can around that?
i solved same issue command nohup.
so start server nohup python manage.py runserver_socketio host:port &
(& start in backgroud). result stored in nohup.out file...
Comments
Post a Comment