Heroku Deployement Django
Deploy Django App to Heroku Youtube : https://www.youtube.com/watch?v=V2rWvStauak Github: https://github.com/akjasim/codeband-django-heroku Usage If you don't have git installed, follow this Tutorial and come back here. Make a copy of your project or use a seperate git branch. Make sure your virtual environment is activated. Add your dependencies to requirements.txt by typing in the terminal, $ pip freeze > requirements.txt 5. Add this in settings.py code: STATIC_ROOT = os.path.join(BASE_DIR, 'static') 6. Make a Heroku account https://signup.heroku.com/ 7. Download Heroku CLI https://devcenter.heroku.com/articles/heroku-cli#install-the-heroku-cli 8. Configure Django Heroku https://devcenter.heroku.com/articles/django-app-configuration making of Procfile 9. In your terminal, type in $ git init $ git add . $ git commit -...