├── .gitignore ├── 01-preparing-project └── README.md ├── 02-setup-server └── README.md ├── 03-setup-dependencies └── README.md ├── 04-deploy-backend └── README.md ├── 05-deploy-frontend └── README.md ├── 06-setup-domain └── README.md ├── 07-setup-reverse-proxy └── README.md ├── 08-setup-ssl └── README.md ├── 09-cicd-basics └── README.md ├── LICENSE ├── README.md └── images └── roadmap.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhpq331/devops-training/HEAD/.gitignore -------------------------------------------------------------------------------- /01-preparing-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhpq331/devops-training/HEAD/01-preparing-project/README.md -------------------------------------------------------------------------------- /02-setup-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhpq331/devops-training/HEAD/02-setup-server/README.md -------------------------------------------------------------------------------- /03-setup-dependencies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhpq331/devops-training/HEAD/03-setup-dependencies/README.md -------------------------------------------------------------------------------- /04-deploy-backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhpq331/devops-training/HEAD/04-deploy-backend/README.md -------------------------------------------------------------------------------- /05-deploy-frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhpq331/devops-training/HEAD/05-deploy-frontend/README.md -------------------------------------------------------------------------------- /06-setup-domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhpq331/devops-training/HEAD/06-setup-domain/README.md -------------------------------------------------------------------------------- /07-setup-reverse-proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhpq331/devops-training/HEAD/07-setup-reverse-proxy/README.md -------------------------------------------------------------------------------- /08-setup-ssl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhpq331/devops-training/HEAD/08-setup-ssl/README.md -------------------------------------------------------------------------------- /09-cicd-basics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhpq331/devops-training/HEAD/09-cicd-basics/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhpq331/devops-training/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhpq331/devops-training/HEAD/README.md -------------------------------------------------------------------------------- /images/roadmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minhpq331/devops-training/HEAD/images/roadmap.jpg --------------------------------------------------------------------------------