Deploy Django Project to Heroku
Deploy Django Project to Heroku Video Tutorial: https://youtu.be/_3AKAdHUY1M Create Heroku Account : https://www.heroku.com/ Download and Install Git : https://git-scm.com/downloads Download and Install Heroku CLI : https://devcenter.heroku.com/articles/heroku-cli#download-and-install Open Terminal Login into Heroku CLI. Run below command it will open Browser then Click on Login heroku login Create Repo for Project git init Add All Files to Repo git add . Commit All Changes git commit - m "any comment" Create an App using Dashboard or Shell (I am creating using Shell) heroku create heroku_app_name Set Repo heroku git : remote - a heroku_app_name Install gunicorn or waitress - This will be our production server as we can not use development server which we were using by runing python manage.py runserver. Waitress is meant to be a production-quality pure-Python WSGI server with very acceptable performance. For More: https://docs...