Re: Add support for IP, IP:PORT, or PORT command-line arguments

2006-08-01 Thread Adrian Holovaty
On 8/1/06, Kevin <[EMAIL PROTECTED]> wrote: > Sure would be nice to save 5 characters every time I start the dev > server If you're that keen on saving 5 characters, go ahead and create a Bash alias for "manage.py runserver hostname:8000". If you do that, heck, you'd save *dozens* of characte

Re: Add support for IP, IP:PORT, or PORT command-line arguments

2006-08-01 Thread Kevin
+1 for this. I trade off between developing on my local network (but not local machine) so I have to type: runserver :8000 and over the internet where I have to type: runserver :8000 Sure would be nice to save 5 characters every time I start the dev server --~--~-~--~~-

[patch] Add support for IP, IP:PORT, or PORT command-line arguments

2006-07-31 Thread jv
This patch (http://code.djangoproject.com/ticket/2461) adds support for, e.g., $ python manage.py runserver 192.168.1.150 ## if no port, then 8000 is assumed [...] $ python manage.py runserver 2552 ## if no IP address, then 127.0.0.1 is assumed [...] $ python manage.py runserver 192.168.1.1

[patch] manage.py: Add support for IP, IP:PORT, or PORT command-line arguments

2006-07-31 Thread jv
This patch (http://code.djangoproject.com/ticket/2461) adds support for, e.g., $ python manage.py runserver 192.168.1.150 ## if no port, then 8000 is assumed [...] $ python manage.py runserver 2552 ## if no IP address, then 127.0.0.1 is assumed [...] $ python manage.py runserver 192.168.1