0

I just got a new Mac Pro Server. This is first time I am deploying a project to my server. I know how to deploy to heroku. Can I just download django and run the website? Any information on this would greatly be appreciated.

trant trum
  • 219
  • 5
  • 14

1 Answers1

1

The way I do run my servers is using Django, Nginx, supervisord and gunicorn. You can read about how to implement it in several blogs out there, this one for example Setting Up Django With Nginx, Gunicorn, Virtualenv, Supervisor and PostgreSQL

You will need to adapt it to Mac OS but using Homebrew that's super easy.

Julio Menendez
  • 471
  • 4
  • 8
  • Thanks @julio. That really helps. What server do you run your projects on? – trant trum Aug 16 '13 at 21:33
  • Usually Ubuntu running on a VPS in [DigitalOcean](https://www.digitalocean.com/?refcode=5db5e81c9668). They are really cheap, you get a 512MB of memory, 20GB of SSD storage and 1TB of bandwidth for $5 per month. And their support rocks!! – Julio Menendez Aug 16 '13 at 22:03