{"id":1287,"date":"2021-01-22T17:31:43","date_gmt":"2021-01-22T17:31:43","guid":{"rendered":"https:\/\/www.letscloud.io\/blog\/?p=1287"},"modified":"2021-01-22T17:34:55","modified_gmt":"2021-01-22T17:34:55","slug":"it-is-time-to-learn-about-codefresh-ci-cd","status":"publish","type":"post","link":"https:\/\/www.letscloud.io\/blog\/it-is-time-to-learn-about-codefresh-ci-cd\/","title":{"rendered":"It is time to learn about CI\/CD and use them to improve your Projects"},"content":{"rendered":"\n<p>The <a href=\"http:\/\/45.42.162.214\/devops-short-guide\/\">DevOps culture<\/a> brings numerous benefits, its integration between development, operations, and quality teams are a piece of the action success of the digital revolution in the 21st century.<\/p>\n\n\n\n<p>Being a DevOps professional means dealing with the responsibility of implementing and automating a series of processes.<\/p>\n\n\n\n<p>To unclog this task, this professional can use a series of tools available on the market.<\/p>\n\n\n\n<p>In today&#8217;s post, it&#8217;s about another one of them: CodeFresh CI\/CD.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why am I keep seeing these CI\/CD acronym everywhere?<\/h2>\n\n\n\n<p>Before talking about any tool, it is essential to talk about these terms.<\/p>\n\n\n\n<p><strong>Continuous integration (CI)<\/strong> and <strong>continuous delivery (CD)<\/strong> incorporate a culture formed by a set of operating principles and a collection of practices that enable application development teams to deliver code changes more frequently and reliably.<\/p>\n\n\n\n<p>They represent a methodology that should be applied by all developers on a team.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>CI refers to continuous integration<\/strong><\/h3>\n\n\n\n<p>An automation process for developers of Builds and codes. It focuses on reducing costs for creating and maintaining applications and solutions.<\/p>\n\n\n\n<p><em>Just go back to the past and remember how problematic the big updates were.<\/em><\/p>\n\n\n\n<p>The DevOps culture with Agile thinking brought the model of small deliverables, tested, and approved within an integration environment.<\/p>\n\n\n\n<p>This means that new code changes in an application are regularly created, tested, and merged into a shared repository.<\/p>\n\n\n\n<p>A single change in a Feature can involve several collaborators. From programmers, designers, copywriters, SEO analysts&#8230; everybody must have access and share activities to improve the project.<\/p>\n\n\n\n<p>CI is a solution to the problem to solve conflict with each other.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>CD refers to continuous delivery<\/strong><\/h3>\n\n\n\n<p>When continuous integration ends, the CD starts to play, CD is for Continuous Delivery which automates the delivery of applications to selected infrastructure environments.<\/p>\n\n\n\n<p>Most teams work with multiple environments other than the production, such as development and testing environments, and CD ensures there is an automated way to push code changes to them.<\/p>\n\n\n\n<p>In continuous delivery, every stage from the merger of code changes to the delivery of production-ready builds involves test automation and code release automation. At the end of that process, the operations team can deploy an app to production quickly and easily.<\/p>\n\n\n\n<p>By releasing minor changes more often, you detect errors earlier in the development process. When you implement automated testing at all stages of development, you don&#8217;t risk passing the failed code to the next step &#8211; and it&#8217;s easier to roll back minor changes when you need to.<\/p>\n\n\n\n<p>CI\/CD is one of the best practices for DevOps teams to implement. The implementation is also known as the CI\/CD pipeline.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Pipelines and Codefresh CI\/CD<\/h2>\n\n\n\n<p>GitHub and other repository hosts must receive the application code. Then, a pipeline procedure is triggered when code is committed to this repository.<\/p>\n\n\n\n<p>Next comes notification to a build system. The build system compiles the code and runs unit tests.<\/p>\n\n\n\n<p>Units Tests are crucial. If you are not doing unit testing, get back to the pipeline to make them.<\/p>\n\n\n\n<p>Check your pipeline: If your pipeline is built correctly, and unit tests go with no trouble, the project is ready to go on integration tests.<\/p>\n\n\n\n<p>The Integration test must be successful, because the next step is to create images and push them to a registration service, such as the Docker Hub. Thus, they can be easily deployed.<\/p>\n\n\n\n<p>This is a basic pipeline example. It can still do many other things like:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Perform security scans.<\/li><li>Perform quality checks on the code.<\/li><li>Send slack notifications.<\/li><\/ul>\n\n\n\n<p>You can also have approval steps that interrupt a pipeline and require human approval before resuming operations.<\/p>\n\n\n\n<p>Some pipelines also include automatic deployment (sometimes called continuous deployment) in a test environment for user validation after creating packages.<\/p>\n\n\n\n<p>Many companies try to build a pipeline using bash or python scripts.<\/p>\n\n\n\n<p>Forget the temptation to try to build your own tools in-house to handle the main job that is done during the CI\/CD pipeline.<\/p>\n\n\n\n<p>If your product is not a new Pipeline tool, there is no need to reinvent the wheel. There are more than enough tools available on the market to get you started.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">CodeFresh CI\/CD<\/h2>\n\n\n\n<p>Codefresh is one of the few solutions that cover both CI and CD. Integrates with all tools you\u2019re already using whether it\u2019s your source control manager, testing suite, package manager, secret manager, security scanner, cloud platform, or even custom internal tools.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-style-default\"><img fetchpriority=\"high\" decoding=\"async\" width=\"837\" height=\"182\" src=\"http:\/\/45.42.162.214\/wp-content\/uploads\/2021\/01\/codefresh_logo.png\" alt=\"CodeFresh CI \/ CD\" class=\"wp-image-1290\" srcset=\"https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2021\/01\/codefresh_logo.png 837w, https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2021\/01\/codefresh_logo-300x65.png 300w, https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2021\/01\/codefresh_logo-768x167.png 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" \/><\/figure>\n\n\n\n<p>Ease to get started with pipelines that only work with unit tests and code packaging and move them gradually to a more complex workflow that handles deployment.<\/p>\n\n\n\n<p>It\u2019s built on Kubernetes for fast speed and unlimited scalability. Every step in Codefresh is a container. This means that each step is an ultra-modular action that can be reused across pipelines.<\/p>\n\n\n\n<p>To conclude with great news: you can use CodeFresh CI\/CD for free. And learn more about it <a href=\"https:\/\/codefresh.io\/\" target=\"_blank\" rel=\"noreferrer noopener\">here<\/a>.<\/p>\n\n\n\n<p>We hope this solution works for your projects.<\/p>\n\n\n\n<p>Furthermore, we are always willing to listen to you through our social networks and in the comments!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Being a DevOps professional means dealing with the responsibility of implementing and automating a series of processes.<\/p>\n<p>To unclog this task, this professional can use a series of tools available on the market.<\/p>\n<p>In today\u2019s post, it\u2019s about another one of them: CodeFresh CI\/CD &#8211; a great tool for the DevOps culture.<\/p>\n","protected":false},"author":1,"featured_media":1294,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[1,8,7],"tags":[],"class_list":["post-1287","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-community","category-culture","category-development","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How CodeFresh CI\/CD can improve your Projects?<\/title>\n<meta name=\"description\" content=\"Codefresh CI \/ CD can help you to build powerful, scalable CI\/CD pipelines. It Integrates with all tools you\u2019re already use.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.letscloud.io\/blog\/it-is-time-to-learn-about-codefresh-ci-cd\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How CodeFresh CI\/CD can improve your Projects?\" \/>\n<meta property=\"og:description\" content=\"Codefresh CI \/ CD can help you to build powerful, scalable CI\/CD pipelines. It Integrates with all tools you\u2019re already use.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.letscloud.io\/blog\/it-is-time-to-learn-about-codefresh-ci-cd\/\" \/>\n<meta property=\"og:site_name\" content=\"LetsCloud Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/LetsCloudOfficial\" \/>\n<meta property=\"article:published_time\" content=\"2021-01-22T17:31:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-01-22T17:34:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2021\/01\/codefresh_destaque-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"910\" \/>\n\t<meta property=\"og:image:height\" content=\"505\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"LetsCloud Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@letscloudInc\" \/>\n<meta name=\"twitter:site\" content=\"@letscloudInc\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"LetsCloud Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/it-is-time-to-learn-about-codefresh-ci-cd\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/it-is-time-to-learn-about-codefresh-ci-cd\\\/\"},\"author\":{\"name\":\"LetsCloud Team\",\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/#\\\/schema\\\/person\\\/db5dc1b68cac3498c8aeb0b56f1dbdf6\"},\"headline\":\"It is time to learn about CI\\\/CD and use them to improve your Projects\",\"datePublished\":\"2021-01-22T17:31:43+00:00\",\"dateModified\":\"2021-01-22T17:34:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/it-is-time-to-learn-about-codefresh-ci-cd\\\/\"},\"wordCount\":856,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/it-is-time-to-learn-about-codefresh-ci-cd\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/codefresh_destaque-1.png\",\"articleSection\":[\"Community\",\"Culture\",\"Development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/it-is-time-to-learn-about-codefresh-ci-cd\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/it-is-time-to-learn-about-codefresh-ci-cd\\\/\",\"url\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/it-is-time-to-learn-about-codefresh-ci-cd\\\/\",\"name\":\"How CodeFresh CI\\\/CD can improve your Projects?\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/it-is-time-to-learn-about-codefresh-ci-cd\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/it-is-time-to-learn-about-codefresh-ci-cd\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/codefresh_destaque-1.png\",\"datePublished\":\"2021-01-22T17:31:43+00:00\",\"dateModified\":\"2021-01-22T17:34:55+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/#\\\/schema\\\/person\\\/db5dc1b68cac3498c8aeb0b56f1dbdf6\"},\"description\":\"Codefresh CI \\\/ CD can help you to build powerful, scalable CI\\\/CD pipelines. It Integrates with all tools you\u2019re already use.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/it-is-time-to-learn-about-codefresh-ci-cd\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/it-is-time-to-learn-about-codefresh-ci-cd\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/it-is-time-to-learn-about-codefresh-ci-cd\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/codefresh_destaque-1.png\",\"contentUrl\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/codefresh_destaque-1.png\",\"width\":910,\"height\":505,\"caption\":\"CodeFresh CI\\\/CD\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/it-is-time-to-learn-about-codefresh-ci-cd\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"It is time to learn about CI\\\/CD and use them to improve your Projects\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/\",\"name\":\"LetsCloud Blog\",\"description\":\"Everything you need. Nothing you don\u2019t.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/#\\\/schema\\\/person\\\/db5dc1b68cac3498c8aeb0b56f1dbdf6\",\"name\":\"LetsCloud Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ccae1dbb34f990736eba7967e6dfaf22ad95b4790915f19a175e53d146ad0a71?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ccae1dbb34f990736eba7967e6dfaf22ad95b4790915f19a175e53d146ad0a71?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ccae1dbb34f990736eba7967e6dfaf22ad95b4790915f19a175e53d146ad0a71?s=96&d=mm&r=g\",\"caption\":\"LetsCloud Team\"},\"url\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/author\\\/letscloud\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How CodeFresh CI\/CD can improve your Projects?","description":"Codefresh CI \/ CD can help you to build powerful, scalable CI\/CD pipelines. It Integrates with all tools you\u2019re already use.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.letscloud.io\/blog\/it-is-time-to-learn-about-codefresh-ci-cd\/","og_locale":"en_US","og_type":"article","og_title":"How CodeFresh CI\/CD can improve your Projects?","og_description":"Codefresh CI \/ CD can help you to build powerful, scalable CI\/CD pipelines. It Integrates with all tools you\u2019re already use.","og_url":"https:\/\/www.letscloud.io\/blog\/it-is-time-to-learn-about-codefresh-ci-cd\/","og_site_name":"LetsCloud Blog","article_publisher":"https:\/\/www.facebook.com\/LetsCloudOfficial","article_published_time":"2021-01-22T17:31:43+00:00","article_modified_time":"2021-01-22T17:34:55+00:00","og_image":[{"width":910,"height":505,"url":"https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2021\/01\/codefresh_destaque-1.png","type":"image\/png"}],"author":"LetsCloud Team","twitter_card":"summary_large_image","twitter_creator":"@letscloudInc","twitter_site":"@letscloudInc","twitter_misc":{"Written by":"LetsCloud Team","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.letscloud.io\/blog\/it-is-time-to-learn-about-codefresh-ci-cd\/#article","isPartOf":{"@id":"https:\/\/www.letscloud.io\/blog\/it-is-time-to-learn-about-codefresh-ci-cd\/"},"author":{"name":"LetsCloud Team","@id":"https:\/\/www.letscloud.io\/blog\/#\/schema\/person\/db5dc1b68cac3498c8aeb0b56f1dbdf6"},"headline":"It is time to learn about CI\/CD and use them to improve your Projects","datePublished":"2021-01-22T17:31:43+00:00","dateModified":"2021-01-22T17:34:55+00:00","mainEntityOfPage":{"@id":"https:\/\/www.letscloud.io\/blog\/it-is-time-to-learn-about-codefresh-ci-cd\/"},"wordCount":856,"commentCount":0,"image":{"@id":"https:\/\/www.letscloud.io\/blog\/it-is-time-to-learn-about-codefresh-ci-cd\/#primaryimage"},"thumbnailUrl":"https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2021\/01\/codefresh_destaque-1.png","articleSection":["Community","Culture","Development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.letscloud.io\/blog\/it-is-time-to-learn-about-codefresh-ci-cd\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.letscloud.io\/blog\/it-is-time-to-learn-about-codefresh-ci-cd\/","url":"https:\/\/www.letscloud.io\/blog\/it-is-time-to-learn-about-codefresh-ci-cd\/","name":"How CodeFresh CI\/CD can improve your Projects?","isPartOf":{"@id":"https:\/\/www.letscloud.io\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.letscloud.io\/blog\/it-is-time-to-learn-about-codefresh-ci-cd\/#primaryimage"},"image":{"@id":"https:\/\/www.letscloud.io\/blog\/it-is-time-to-learn-about-codefresh-ci-cd\/#primaryimage"},"thumbnailUrl":"https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2021\/01\/codefresh_destaque-1.png","datePublished":"2021-01-22T17:31:43+00:00","dateModified":"2021-01-22T17:34:55+00:00","author":{"@id":"https:\/\/www.letscloud.io\/blog\/#\/schema\/person\/db5dc1b68cac3498c8aeb0b56f1dbdf6"},"description":"Codefresh CI \/ CD can help you to build powerful, scalable CI\/CD pipelines. It Integrates with all tools you\u2019re already use.","breadcrumb":{"@id":"https:\/\/www.letscloud.io\/blog\/it-is-time-to-learn-about-codefresh-ci-cd\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.letscloud.io\/blog\/it-is-time-to-learn-about-codefresh-ci-cd\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.letscloud.io\/blog\/it-is-time-to-learn-about-codefresh-ci-cd\/#primaryimage","url":"https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2021\/01\/codefresh_destaque-1.png","contentUrl":"https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2021\/01\/codefresh_destaque-1.png","width":910,"height":505,"caption":"CodeFresh CI\/CD"},{"@type":"BreadcrumbList","@id":"https:\/\/www.letscloud.io\/blog\/it-is-time-to-learn-about-codefresh-ci-cd\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.letscloud.io\/blog\/"},{"@type":"ListItem","position":2,"name":"It is time to learn about CI\/CD and use them to improve your Projects"}]},{"@type":"WebSite","@id":"https:\/\/www.letscloud.io\/blog\/#website","url":"https:\/\/www.letscloud.io\/blog\/","name":"LetsCloud Blog","description":"Everything you need. Nothing you don\u2019t.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.letscloud.io\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.letscloud.io\/blog\/#\/schema\/person\/db5dc1b68cac3498c8aeb0b56f1dbdf6","name":"LetsCloud Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ccae1dbb34f990736eba7967e6dfaf22ad95b4790915f19a175e53d146ad0a71?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ccae1dbb34f990736eba7967e6dfaf22ad95b4790915f19a175e53d146ad0a71?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ccae1dbb34f990736eba7967e6dfaf22ad95b4790915f19a175e53d146ad0a71?s=96&d=mm&r=g","caption":"LetsCloud Team"},"url":"https:\/\/www.letscloud.io\/blog\/author\/letscloud\/"}]}},"_links":{"self":[{"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/posts\/1287","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/comments?post=1287"}],"version-history":[{"count":0,"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/posts\/1287\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/media\/1294"}],"wp:attachment":[{"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/media?parent=1287"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/categories?post=1287"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/tags?post=1287"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}