How can I make the development server from django running permanent? So that it does't stop when i quit the shell.
Thanks
|
1
|
|||||||
|
|
|
I'm just about to do this myself. The scenario is that I'm rapid prototyping for a client and they need to see what things look like. There will never be more than 2-3 people on this at a time, but I don't want to set up Apache or stay logged in.
|
||
|
|
|
|
On Windows, run
|
||
|
|
|
|
create a file with this, example /tmp/screendjango:
and then you put:
for attach the sessión you put
|
||
|
|
|
another easy way to do this is to run:
This creates the server in a screen and then detaches it. This way you can simply go back in and type:
and you can take control of the server again and see whats going on. |
||
|
|
|
If you are on Linux/Unix use the "nohup" command.
Then to get it back, use the fg command:
Thanks to: Xiong Chiamiov |
||||||
|