Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialJuan Perez
Courses Plus Student 8,944 PointsDeploying a Django app on a Shared WebServer
Is it possible to deploy a Django app on a Shared WebServer? If so how is it done?
1 Answer
Vittorio Somaschini
33,371 PointsHello Juan.
It is surely possible. You probably want to check out services like Heroku or PythonAnywhere. According to my (short) experience python can get tricky when deploying it on a server, but these 2 services are pretty good. I personally prefer Heroku, great documentation and you can follow the step by step python tutorial to deploy th application.
I first started with Heroku, my app is still there after a year or so and I am only using the free account. I remember I start deploying a flask app but I imagine Django would be similar.
Let me know if you need any further hints or help.
Vitto
Juan Perez
Courses Plus Student 8,944 PointsJuan Perez
Courses Plus Student 8,944 PointsThank you!