{"id":749,"date":"2022-12-16T10:30:53","date_gmt":"2022-12-16T10:30:53","guid":{"rendered":"https:\/\/www.devopstrainer.in\/blog\/?p=749"},"modified":"2022-12-17T08:47:26","modified_gmt":"2022-12-17T08:47:26","slug":"how-to-install-laravel-and-create-a-laravel-project","status":"publish","type":"post","link":"https:\/\/www.devopstrainer.in\/blog\/how-to-install-laravel-and-create-a-laravel-project\/","title":{"rendered":"How to install Laravel and create a Laravel project?"},"content":{"rendered":"\n<p>If you want to make a project on Laravel. First, you will have to install Laravel then what procedure comes under the Laravel installation process?<\/p>\n\n\n\n<p>For handling dependencies, we use a composer for Laravel. Make a wish you have a Composer installed on your system before you install Laravel. In this article, you will see the installation process of Laravel and how to create a Laravel project.<\/p>\n\n\n\n<p>You will have to follow the paths given below for installing Laravel onto your local drive \u2212<\/p>\n\n\n\n<p><strong>Path 1<\/strong> \u2212 Go through the following URL and download composer to install it on your system.<\/p>\n\n\n\n<p><strong><a href=\"https:\/\/getcomposer.org\/download\/\">Download Composer<\/a><\/strong><\/p>\n\n\n\n<p><strong>Path 2<\/strong> \u2212 After the Composer is installed, verify the installation by typing the Composer command in the command prompt as shown in the below-mentioned screenshot image.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/laravel-composer.png\" alt=\"\" class=\"wp-image-750\" width=\"785\" height=\"413\" srcset=\"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/laravel-composer.png 965w, https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/laravel-composer-300x158.png 300w, https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/laravel-composer-768x404.png 768w\" sizes=\"auto, (max-width: 785px) 100vw, 785px\" \/><figcaption class=\"wp-element-caption\"><strong><em>Laravel Composer<\/em><\/strong><\/figcaption><\/figure>\n<\/div>\n\n\n<p><strong>Path 3<\/strong> \u2212 Create a new directory anywhere in your local drive for your new Laravel project. After that, proceed to the path where you have created the new directory and type the following command there to install Laravel.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>composer create-project laravel\/laravel \u2013-prefer-dist<\/code><\/pre>\n\n\n\n<p>Now, we will focus on the installation of version 5.7. In Laravel version 5.7, you can install the complete framework by putting the following command \u2212<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>composer create-project laravel\/laravel firstproject<\/code><\/pre>\n\n\n\n<p>The output of the command is as shown below \u2212<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/create-laravel-project.png\" alt=\"\" class=\"wp-image-751\" width=\"668\" height=\"372\" srcset=\"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/create-laravel-project.png 655w, https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/create-laravel-project-300x167.png 300w\" sizes=\"auto, (max-width: 668px) 100vw, 668px\" \/><figcaption class=\"wp-element-caption\"><strong><em>Create Laravel project<\/em><\/strong><\/figcaption><\/figure>\n<\/div>\n\n\n<p>The Laravel framework can be directly installed with the project branch which includes the latest framework.<\/p>\n\n\n\n<p><strong>Path 4 <\/strong>\u2212 The above command will install Laravel in the current directory. Start the Laravel service by executing the following command.<br><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>php artisan serve<\/code><\/pre>\n\n\n\n<p><strong>Path 5 <\/strong>\u2212 After executing the above command, you will see a screen as shown below \u2212<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/laravel-localhost.jpg\" alt=\"\" class=\"wp-image-752\" width=\"718\" height=\"334\" srcset=\"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/laravel-localhost.jpg 649w, https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/laravel-localhost-300x140.jpg 300w\" sizes=\"auto, (max-width: 718px) 100vw, 718px\" \/><figcaption class=\"wp-element-caption\"><strong><em>Laravel on Localhost<\/em><\/strong><\/figcaption><\/figure>\n<\/div>\n\n\n<p><strong>Path 6 <\/strong>\u2212 Copy the URL underlined in red in the above screenshot image and open that URL in the browser. If you will see the screen, it signifies Laravel has been installed successfully.<\/p>\n\n\n\n<p>So if you have already installed all the required way up accurately, then start creating your first Laravel Project.<\/p>\n\n\n\n<p>Installation Via Composer: <\/p>\n\n\n\n<p>You will open the Command Prompt, and follow the commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>composer create-project laravel\/laravel project-app\n\ncd project-app\n\nphp artisan serve<\/code><\/pre>\n\n\n\n<p>It will create a Laravel project with a folder name \u201c <strong>project-app<\/strong>\u201d. Then go to the accurate directory and run the last command.<br>The \u201c<strong>php artisan serve<\/strong>\u2019 command is utilized for running the project on localhost.<\/p>\n\n\n\n<p>The Laravel Installer:<\/p>\n\n\n\n<p>Or, you may install the Laravel Installer as a global Composer dependency:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>composer global require laravel\/installer\n\nlaravel new project-app\n\ncd project-app\n\nphp artisan serve<\/code><\/pre>\n\n\n\n<p>This way!!! Your first Laravel project will be created successfully and ready to build something amazing.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you want to make a project on Laravel. First, you will have to install Laravel then what procedure comes under the Laravel installation process? For handling&#8230; <\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[299,300,289,251,301],"tags":[303,302],"class_list":["post-749","post","type-post","status-publish","format-standard","hentry","category-composer","category-installation","category-laravel","category-localhost","category-project","tag-create-laravel-project","tag-install-laravel"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to install Laravel and create a Laravel project? - DevOps | SRE | DevSecOps<\/title>\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.devopstrainer.in\/blog\/how-to-install-laravel-and-create-a-laravel-project\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install Laravel and create a Laravel project? - DevOps | SRE | DevSecOps\" \/>\n<meta property=\"og:description\" content=\"If you want to make a project on Laravel. First, you will have to install Laravel then what procedure comes under the Laravel installation process? For handling...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.devopstrainer.in\/blog\/how-to-install-laravel-and-create-a-laravel-project\/\" \/>\n<meta property=\"og:site_name\" content=\"DevOps | SRE | DevSecOps\" \/>\n<meta property=\"article:published_time\" content=\"2022-12-16T10:30:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-17T08:47:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/laravel-composer.png\" \/>\n<meta name=\"author\" content=\"rahulkr kr\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"rahulkr kr\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-install-laravel-and-create-a-laravel-project\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-install-laravel-and-create-a-laravel-project\\\/\"},\"author\":{\"name\":\"rahulkr kr\",\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/#\\\/schema\\\/person\\\/e9fd1d88de76754aa189257cd197394d\"},\"headline\":\"How to install Laravel and create a Laravel project?\",\"datePublished\":\"2022-12-16T10:30:53+00:00\",\"dateModified\":\"2022-12-17T08:47:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-install-laravel-and-create-a-laravel-project\\\/\"},\"wordCount\":391,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-install-laravel-and-create-a-laravel-project\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/laravel-composer.png\",\"keywords\":[\"Create Laravel project\",\"install Laravel\"],\"articleSection\":[\"Composer\",\"Installation\",\"Laravel\",\"Localhost\",\"Project\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-install-laravel-and-create-a-laravel-project\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-install-laravel-and-create-a-laravel-project\\\/\",\"url\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-install-laravel-and-create-a-laravel-project\\\/\",\"name\":\"How to install Laravel and create a Laravel project? - DevOps | SRE | DevSecOps\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-install-laravel-and-create-a-laravel-project\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-install-laravel-and-create-a-laravel-project\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/laravel-composer.png\",\"datePublished\":\"2022-12-16T10:30:53+00:00\",\"dateModified\":\"2022-12-17T08:47:26+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/#\\\/schema\\\/person\\\/e9fd1d88de76754aa189257cd197394d\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-install-laravel-and-create-a-laravel-project\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-install-laravel-and-create-a-laravel-project\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-install-laravel-and-create-a-laravel-project\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/laravel-composer.png\",\"contentUrl\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/laravel-composer.png\",\"width\":965,\"height\":508},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-install-laravel-and-create-a-laravel-project\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Laravel and create a Laravel project?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/\",\"name\":\"DevOps | SRE | DevSecOps\",\"description\":\"Automation means Cost, Quality, Time\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/#\\\/schema\\\/person\\\/e9fd1d88de76754aa189257cd197394d\",\"name\":\"rahulkr kr\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/79531cbaf0b831cebc9631f6ac28f21fb3fb0dc2615eeecdeeec43038b513473?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/79531cbaf0b831cebc9631f6ac28f21fb3fb0dc2615eeecdeeec43038b513473?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/79531cbaf0b831cebc9631f6ac28f21fb3fb0dc2615eeecdeeec43038b513473?s=96&d=mm&r=g\",\"caption\":\"rahulkr kr\"},\"url\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/author\\\/rahulkr\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install Laravel and create a Laravel project? - DevOps | SRE | DevSecOps","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.devopstrainer.in\/blog\/how-to-install-laravel-and-create-a-laravel-project\/","og_locale":"en_US","og_type":"article","og_title":"How to install Laravel and create a Laravel project? - DevOps | SRE | DevSecOps","og_description":"If you want to make a project on Laravel. First, you will have to install Laravel then what procedure comes under the Laravel installation process? For handling...","og_url":"https:\/\/www.devopstrainer.in\/blog\/how-to-install-laravel-and-create-a-laravel-project\/","og_site_name":"DevOps | SRE | DevSecOps","article_published_time":"2022-12-16T10:30:53+00:00","article_modified_time":"2022-12-17T08:47:26+00:00","og_image":[{"url":"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/laravel-composer.png","type":"","width":"","height":""}],"author":"rahulkr kr","twitter_card":"summary_large_image","twitter_misc":{"Written by":"rahulkr kr","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.devopstrainer.in\/blog\/how-to-install-laravel-and-create-a-laravel-project\/#article","isPartOf":{"@id":"https:\/\/www.devopstrainer.in\/blog\/how-to-install-laravel-and-create-a-laravel-project\/"},"author":{"name":"rahulkr kr","@id":"https:\/\/www.devopstrainer.in\/blog\/#\/schema\/person\/e9fd1d88de76754aa189257cd197394d"},"headline":"How to install Laravel and create a Laravel project?","datePublished":"2022-12-16T10:30:53+00:00","dateModified":"2022-12-17T08:47:26+00:00","mainEntityOfPage":{"@id":"https:\/\/www.devopstrainer.in\/blog\/how-to-install-laravel-and-create-a-laravel-project\/"},"wordCount":391,"commentCount":0,"image":{"@id":"https:\/\/www.devopstrainer.in\/blog\/how-to-install-laravel-and-create-a-laravel-project\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/laravel-composer.png","keywords":["Create Laravel project","install Laravel"],"articleSection":["Composer","Installation","Laravel","Localhost","Project"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.devopstrainer.in\/blog\/how-to-install-laravel-and-create-a-laravel-project\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.devopstrainer.in\/blog\/how-to-install-laravel-and-create-a-laravel-project\/","url":"https:\/\/www.devopstrainer.in\/blog\/how-to-install-laravel-and-create-a-laravel-project\/","name":"How to install Laravel and create a Laravel project? - DevOps | SRE | DevSecOps","isPartOf":{"@id":"https:\/\/www.devopstrainer.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.devopstrainer.in\/blog\/how-to-install-laravel-and-create-a-laravel-project\/#primaryimage"},"image":{"@id":"https:\/\/www.devopstrainer.in\/blog\/how-to-install-laravel-and-create-a-laravel-project\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/laravel-composer.png","datePublished":"2022-12-16T10:30:53+00:00","dateModified":"2022-12-17T08:47:26+00:00","author":{"@id":"https:\/\/www.devopstrainer.in\/blog\/#\/schema\/person\/e9fd1d88de76754aa189257cd197394d"},"breadcrumb":{"@id":"https:\/\/www.devopstrainer.in\/blog\/how-to-install-laravel-and-create-a-laravel-project\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.devopstrainer.in\/blog\/how-to-install-laravel-and-create-a-laravel-project\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.devopstrainer.in\/blog\/how-to-install-laravel-and-create-a-laravel-project\/#primaryimage","url":"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/laravel-composer.png","contentUrl":"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/laravel-composer.png","width":965,"height":508},{"@type":"BreadcrumbList","@id":"https:\/\/www.devopstrainer.in\/blog\/how-to-install-laravel-and-create-a-laravel-project\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.devopstrainer.in\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install Laravel and create a Laravel project?"}]},{"@type":"WebSite","@id":"https:\/\/www.devopstrainer.in\/blog\/#website","url":"https:\/\/www.devopstrainer.in\/blog\/","name":"DevOps | SRE | DevSecOps","description":"Automation means Cost, Quality, Time","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.devopstrainer.in\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.devopstrainer.in\/blog\/#\/schema\/person\/e9fd1d88de76754aa189257cd197394d","name":"rahulkr kr","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/79531cbaf0b831cebc9631f6ac28f21fb3fb0dc2615eeecdeeec43038b513473?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/79531cbaf0b831cebc9631f6ac28f21fb3fb0dc2615eeecdeeec43038b513473?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/79531cbaf0b831cebc9631f6ac28f21fb3fb0dc2615eeecdeeec43038b513473?s=96&d=mm&r=g","caption":"rahulkr kr"},"url":"https:\/\/www.devopstrainer.in\/blog\/author\/rahulkr\/"}]}},"_links":{"self":[{"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/posts\/749","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/comments?post=749"}],"version-history":[{"count":4,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/posts\/749\/revisions"}],"predecessor-version":[{"id":756,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/posts\/749\/revisions\/756"}],"wp:attachment":[{"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/media?parent=749"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/categories?post=749"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/tags?post=749"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}