- Create a python3 virtual environment.
- I have pushed requirments.txt file.
- pip install -r reqruirements.txt
- Go to the folder having manage.py file
- python manage.py runserver
- We can access project here : http://127.0.0.1:8000/
- Download heroku
- heroku login
- heroku create
- Create a Procfile for Heroku to run Django server through gunicorn service
- git init
- git add .
- git commit -m "Pushed app to Heroku"
- git push heroku master