Jenkins Continuous Deployment

The configuration for the jenkins server is to poll the master branch every 5 minutes, and upon commits being pushed to head, commence testing. Jenkins then runs a shell script to:
  1. Create a new python virtual environment, and build it using requirements.txt.
  2. Run django tests which takes care of building the test database, migrations etc

Once tests have passed, Jenkins runs my deploy yaml script to log in to the servers via ssh, and simultaniously:
  1. remove any precompiled files (pyc)
  2. pulls the master branch locally
  3. build the python virtual environment
  4. collect static files
  5. run migrations
  6. reload the application using circus
  7. get the last commit message and hash
  8. post the last commit message and hash to Slack so I can track

Security

By default Jenkins has a folder icon that allows the logged in user to download the repository code stored on Jenkins. This is behind a login, but nevertheless is a security issue in my view. As a result I firewall my Jenkins servers only to be available on a local area network.