Files
kennethreitz.org/data/essays/2009-01-django_remote_development_server.md
kennethreitz 0b2c6164ed Clean migration artifacts from 33 old essays (2008-2016)
Remove third-person sidenotes ("Kenneth's work..."), anachronistic
cross-links to 2025 essays, injected bridge paragraphs, and
over-annotation from short blog posts. Restore original first-person
voice across all pre-2017 content.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-24 17:22:32 -04:00

651 B

Django Remote Development Server

January 2009

If you've worked with Django much at all, I'm sure you've had this problem: wanting to access the built-in development webserver remotely. Typically, this integrated mini-server ignores all requests from any IP Address other than 127.0.0.1 . If you run the following command, however, it will be accessible remotely. VERY useful for remote dev work.

manage.py runserver 0.0.0.0:8000

Enjoy!

Development, Django, Python