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
+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
--~--~-~--~~-
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
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