Django自带的manage.py服务器如何后台启动?

nohup代表后台启动,0.0.0.0代表IP地址,80代表端口 

nohup python3 manage.py runserver 0.0.0.0:80&

 

你可能感兴趣的:(Django,Django自带服务器后台启动)