I want to run my app using python manage.py runserver. It executes successfully on localhost. But, how do I open it in my browser?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
This tutorial looks at how to make a django app publically avaliable on the web.
If you are just testing, you can use a ssh proxy to forward your requests for localhost:5000 (for example) to the server, so you can access stuff inside the server’s localhost. This is good for private testing. To do so, just run the following on any *NIX system, remembering to change the port number and server address for your app:
ssh -L 8000:localhost:8000 root@23.23.23.23
For anyone stumbling upon this, the best way forward would be using this tutorial here;
In this guide, you will install and configure some components on Ubuntu 24.04 (or any other supported Ubuntu version) to support and serve Django applications. You will be setting up a PostgreSQL database instead of using the default SQLite database. You’ll configure the Gunicorn application server to interface with your applications. You will then set up Nginx to reverse proxy to Gunicorn, giving you access to its security and performance features to serve your apps.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.