コード例 #1
0
        public void UpdateEnvFileContent(string fileContent, string customer, string personalAccessKey)
        {
            var gitClient = new GitClient();
            var repo      = gitClient.GetDeploymentRepo(customer, personalAccessKey);

            gitClient.WriteEnvFileContent(repo, fileContent, personalAccessKey);
        }
コード例 #2
0
        public string GetDockerFileContent(string customer, string personalAccessKey)
        {
            var gitClient = new GitClient();
            var repo      = gitClient.GetDeploymentRepo(customer, personalAccessKey);
            var retVal    = gitClient.GetDockerComposeFileContent(repo, personalAccessKey);

            return(retVal);
        }