├── .gitignore ├── Jenkinsfile ├── LICENSE ├── README.md ├── azure-vote-all-in-one-redis.yaml ├── azure-vote ├── Dockerfile ├── Dockerfile-for-app-service ├── app_init.supervisord.conf ├── azure-vote │ ├── config_file.cfg │ ├── main.py │ ├── static │ │ └── default.css │ └── templates │ │ └── index.html └── sshd_config ├── docker-compose.yaml └── jenkins-tutorial ├── config-jenkins.sh └── deploy-jenkins-vm.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbyaccident/azure-voting-app-redis/HEAD/.gitignore -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbyaccident/azure-voting-app-redis/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbyaccident/azure-voting-app-redis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbyaccident/azure-voting-app-redis/HEAD/README.md -------------------------------------------------------------------------------- /azure-vote-all-in-one-redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbyaccident/azure-voting-app-redis/HEAD/azure-vote-all-in-one-redis.yaml -------------------------------------------------------------------------------- /azure-vote/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM tiangolo/uwsgi-nginx-flask:python3.6 2 | RUN pip install redis 3 | ADD /azure-vote /app 4 | -------------------------------------------------------------------------------- /azure-vote/Dockerfile-for-app-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbyaccident/azure-voting-app-redis/HEAD/azure-vote/Dockerfile-for-app-service -------------------------------------------------------------------------------- /azure-vote/app_init.supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbyaccident/azure-voting-app-redis/HEAD/azure-vote/app_init.supervisord.conf -------------------------------------------------------------------------------- /azure-vote/azure-vote/config_file.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbyaccident/azure-voting-app-redis/HEAD/azure-vote/azure-vote/config_file.cfg -------------------------------------------------------------------------------- /azure-vote/azure-vote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbyaccident/azure-voting-app-redis/HEAD/azure-vote/azure-vote/main.py -------------------------------------------------------------------------------- /azure-vote/azure-vote/static/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbyaccident/azure-voting-app-redis/HEAD/azure-vote/azure-vote/static/default.css -------------------------------------------------------------------------------- /azure-vote/azure-vote/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbyaccident/azure-voting-app-redis/HEAD/azure-vote/azure-vote/templates/index.html -------------------------------------------------------------------------------- /azure-vote/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbyaccident/azure-voting-app-redis/HEAD/azure-vote/sshd_config -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbyaccident/azure-voting-app-redis/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /jenkins-tutorial/config-jenkins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbyaccident/azure-voting-app-redis/HEAD/jenkins-tutorial/config-jenkins.sh -------------------------------------------------------------------------------- /jenkins-tutorial/deploy-jenkins-vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbyaccident/azure-voting-app-redis/HEAD/jenkins-tutorial/deploy-jenkins-vm.sh --------------------------------------------------------------------------------