Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which are the best web free hosts to practice Django deployment? [closed]

I'm a beginner with Django but I'd like to see my projects online without having to pay for the host as it is just to learn to deployment process.

like image 614
Luis Martínez-Brocal Avatar asked Jan 19 '13 12:01

Luis Martínez-Brocal


2 Answers

try pythonanywhere. imo, its one of the best free django cloud host you can find

like image 188
jdtoh Avatar answered Nov 15 '22 19:11

jdtoh


Heroku is free. It uses deployment via git, so you will also learn that in the process.

I suggest setting up an account at Github - also free for public repositories - and following the tutorial to setup the repository for your app. Then learn how to deploy that repo to Heroku.

The documentation of both sites is fantastic.

like image 31
Dan Hoerst Avatar answered Nov 15 '22 17:11

Dan Hoerst