Ok. I starting learning Django six months ago and I really really loved it.
I learnt how to deploy the django projects to EC2 instances.
Basically 1st time when the django project is deployed to EC2, the instance will be configured with httpd.conf, wsgi, change permissions on files and folders and other stuff and the project will be cloned to the EC2 instance and server is restarted.
My question is how do they do future deployments? They in this context is anyone who deploys Django on EC2 instances.
Do they login to EC2 instances and manually clone the repository from VCS site and restart the server?
Does they have any other automated mechanism to pull the code and restarting the apache server etc.
How is it done basically every time they go for a release?
Someone please help me understand this.