{"id":201711,"date":"2019-10-09T07:28:33","date_gmt":"2019-10-09T07:28:33","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=201711"},"modified":"2020-07-13T10:39:29","modified_gmt":"2020-07-13T10:39:29","slug":"install-odoo13-on-ubuntu","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/","title":{"rendered":"Odoo 13 installation on Ubuntu 18.04"},"content":{"rendered":"\n<p>The Odoo version 13 is officially rolled out and has already created a buzz among the users. You can visit <a rel=\"noreferrer noopener\" aria-label=\"GitHub (opens in a new tab)\" href=\"https:\/\/github.com\/odoo\/odoo\" target=\"_blank\">GitHub<\/a> to find the Source Code for Odoo Community Edition.<\/p>\n\n\n\n<p>This blog will explain how to install Odoo version 13 (Community Edition) on Ubuntu 18.04.<\/p>\n\n\n\n<p>Installation steps for previous Ubuntu version(s) till version Ubuntu 16 are similar.  You can visit the <a rel=\"noreferrer noopener\" aria-label=\"Odoo 11 installation on ubuntu 16.04 (opens in a new tab)\" href=\"https:\/\/webkul.com\/blog\/install-odoo11-on-ubuntu\/\" target=\"_blank\"><strong>blog for Odoo 11 installation on ubuntu 16.04<\/strong><\/a> to know the step by step installation of the previous version.<\/p>\n\n\n\n<p>Ubuntu 18.04 comes preinstalled with Python 3.6 which is compatible with Odoo 13. You need to run some commands in terminal for Odoo 13 installation on Ubuntu.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Steps for Odoo 13 installation on Ubuntu<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1) Update apt source-lists.<\/h3>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<pre class=\"wp-block-preformatted\">sudo apt update<\/pre>\n<\/div><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">2) Add a new system user name &#8220;Odoo&#8221; that will own and run the application.<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo adduser --system --home=\/opt\/odoo --group odoo<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">3) Install and configure database server PostgreSQL.<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install -y postgresql\nsudo systemctl start postgresql<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">4) Setup a new PostgreSQL user.&nbsp; The &#8220;Odoo&#8221; user will be used by Odoo to interact with the database.<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo su - postgres\ncreateuser --createdb --username postgres --no-createrole --no-superuser --pwprompt odoo\nexit<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">5) Clone the latest branch of Odoo, in our case it is 13.0 from Github:<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo su - odoo -s \/bin<strong>\/bash<\/strong>\ngit clone https:\/\/github.com\/odoo\/odoo.git --depth 1 --branch 13.0 --single-branch .\nexit<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">6) System dependencies<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install wget git python-pip gdebi-core python3-dev libxml2-dev libxslt-dev libldap2-dev libsasl2-dev<\/pre>\n\n\n\n<p><strong>Wkhtmltopdf<\/strong> is also required<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">wget https:\/\/github.com\/wkhtmltopdf\/packaging\/releases\/download\/0.12.1.4-2\/wkhtmltox_0.12.1.4-2.bionic_amd64.deb\nsudo dpkg -i wkhtmltox_0.12.1.4-2.bionic_amd64.deb<\/pre>\n\n\n\n<p>Install Python3 dependencies for Odoo.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cd \/opt\/odoo\npip3 install -r requirements.txt<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">7) Install Odoo Web dependencies.<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install -y npm\nsudo npm install -g less less-plugin-clean-css\nsudo apt install -y node-less<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">8) Create a directory to store Odoo logs and then change the ownership.<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo mkdir \/var\/log\/odoo\nsudo chown odoo:root \/var\/log\/odoo<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">9) Create a configuration file for Odoo.<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo nano \/etc\/odoo-server.conf<\/pre>\n\n\n\n<p>Sample Configuration might look like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[options]\n; This is the password that allows database operations:\n; admin_passwd = admin\ndb_host = localhost\ndb_port = 5432\ndb_user = odoo\ndb_password = False #add your own password\nlogfile = \/var\/log\/odoo\/odoo-server.log\naddons_path = \/opt\/odoo\/addons,\/opt\/odoo\/odoo\/addons<\/pre>\n\n\n\n<p>Now, set the ownership.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo chown odoo: \/etc\/odoo-server.conf\nsudo chmod 640 \/etc\/odoo-server.conf<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">10) Create a boot script for Odoo. <\/h3>\n\n\n\n<p>Now, we need a script which will let us start\/stop Odoo as a service automatically, with the correct user. Click <a href=\"https:\/\/raw.githubusercontent.com\/mohitg1213\/odoo_scripts\/master\/odoo-server\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"here (opens in a new tab)\">here<\/a> to see get the script. <\/p>\n\n\n\n<p>Now, create a new file.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo nano \/etc\/init.d\/odoo-server<\/pre>\n\n\n\n<p>Now, set the ownership.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo chmod 755 \/etc\/init.d\/odoo-server\nsudo chown root: \/etc\/init.d\/odoo-server<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">11) Start the Odoo Server.<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo \/etc\/init.d\/odoo-server start<\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Using \u2018status\u2019, we can find information about all running odoo daemon servers.<\/li><li>Using \u2018force-stop\/force-restart\u2019, we can kill all running Odoo daemon forcefully and can start fresh odoo-server daemon.<\/li><li>&#8216;Start\/Stop&#8217; will not allow more than one process per daemon.<\/li><\/ul>\n\n\n\n<p>You can check logs using:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">tail -f \/var\/log\/odoo\/odoo-server.log<\/pre>\n\n\n\n<p>Optionally, You can start Odoo server manually for debugging.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo su - odoo -s \/bin\/bash\n.\/odoo-bin -c \/etc\/odoo.conf<\/pre>\n\n\n\n<p>If the log file looks OK, you can check Odoo server running on your browser with URL:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">http:\/\/localhost:8069<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">NEED HELP?<\/h2>\n\n\n\n<p> Did you find the guide helpful? Please feel free to share your feedback in the comments below.<\/p>\n\n\n\n<p>If you still have any issues\/queries regarding the module then please raise a ticket at <a rel=\"noreferrer noopener\" href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\" target=\"_blank\"><strong>https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/<\/strong><\/a><\/p>\n\n\n\n<p>For any doubt contact us at&nbsp;<strong><a rel=\"noreferrer noopener\" href=\"mailto:support@webkul.com\" target=\"_blank\">support@webkul.com<\/a><\/strong>.<\/p>\n\n\n\n<p>Thanks for paying attention!!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The Odoo version 13 is officially rolled out and has already created a buzz among the users. You can visit GitHub to find the Source Code for Odoo Community Edition. This blog will explain how to install Odoo version 13 (Community Edition) on Ubuntu 18.04. Installation steps for previous Ubuntu version(s) till version Ubuntu 16 <a href=\"https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":286,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2007,1],"tags":[420,180,10006,1267,4281,10005],"class_list":["post-201711","post","type-post","status-publish","format-standard","hentry","category-odoo","category-uncategorized","tag-crm","tag-erp","tag-install-odoo-13-on-ubuntu","tag-odoo","tag-odoo-installation","tag-odoo13"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Odoo 13 Installation on Ubuntu 18.04 | Know How To Install Odoo<\/title>\n<meta name=\"description\" content=\"Odoo 13 has released; Do you want to install it?You can read the blog to know the step by step Odoo 13 installation on Ubuntu.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Odoo 13 Installation on Ubuntu 18.04 | Know How To Install Odoo\" \/>\n<meta property=\"og:description\" content=\"Odoo 13 has released; Do you want to install it?You can read the blog to know the step by step Odoo 13 installation on Ubuntu.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-10-09T07:28:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-07-13T10:39:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Gurneesh Chahal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Gurneesh Chahal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/\"},\"author\":{\"name\":\"Gurneesh Chahal\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/3735468ae4074d532cd1c3b1f7d12542\"},\"headline\":\"Odoo 13 installation on Ubuntu 18.04\",\"datePublished\":\"2019-10-09T07:28:33+00:00\",\"dateModified\":\"2020-07-13T10:39:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/\"},\"wordCount\":379,\"commentCount\":4,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"keywords\":[\"crm\",\"erp\",\"install odoo 13 on ubuntu\",\"odoo\",\"Odoo Installation\",\"odoo13\"],\"articleSection\":[\"Odoo\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/\",\"url\":\"https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/\",\"name\":\"Odoo 13 Installation on Ubuntu 18.04 | Know How To Install Odoo\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2019-10-09T07:28:33+00:00\",\"dateModified\":\"2020-07-13T10:39:29+00:00\",\"description\":\"Odoo 13 has released; Do you want to install it?You can read the blog to know the step by step Odoo 13 installation on Ubuntu.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Odoo 13 installation on Ubuntu 18.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/3735468ae4074d532cd1c3b1f7d12542\",\"name\":\"Gurneesh Chahal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/fc6d1c370d50fe950357fe088c0d9a76df793250059f2e6c7dcdb97baec6b9ec?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/fc6d1c370d50fe950357fe088c0d9a76df793250059f2e6c7dcdb97baec6b9ec?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Gurneesh Chahal\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/gurneeshchahal-cloud707\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Odoo 13 Installation on Ubuntu 18.04 | Know How To Install Odoo","description":"Odoo 13 has released; Do you want to install it?You can read the blog to know the step by step Odoo 13 installation on Ubuntu.","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:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/","og_locale":"en_US","og_type":"article","og_title":"Odoo 13 Installation on Ubuntu 18.04 | Know How To Install Odoo","og_description":"Odoo 13 has released; Do you want to install it?You can read the blog to know the step by step Odoo 13 installation on Ubuntu.","og_url":"https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2019-10-09T07:28:33+00:00","article_modified_time":"2020-07-13T10:39:29+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png","type":"image\/png"}],"author":"Gurneesh Chahal","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Gurneesh Chahal","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/"},"author":{"name":"Gurneesh Chahal","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/3735468ae4074d532cd1c3b1f7d12542"},"headline":"Odoo 13 installation on Ubuntu 18.04","datePublished":"2019-10-09T07:28:33+00:00","dateModified":"2020-07-13T10:39:29+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/"},"wordCount":379,"commentCount":4,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"keywords":["crm","erp","install odoo 13 on ubuntu","odoo","Odoo Installation","odoo13"],"articleSection":["Odoo"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/","url":"https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/","name":"Odoo 13 Installation on Ubuntu 18.04 | Know How To Install Odoo","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2019-10-09T07:28:33+00:00","dateModified":"2020-07-13T10:39:29+00:00","description":"Odoo 13 has released; Do you want to install it?You can read the blog to know the step by step Odoo 13 installation on Ubuntu.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/install-odoo13-on-ubuntu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Odoo 13 installation on Ubuntu 18.04"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/3735468ae4074d532cd1c3b1f7d12542","name":"Gurneesh Chahal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/fc6d1c370d50fe950357fe088c0d9a76df793250059f2e6c7dcdb97baec6b9ec?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fc6d1c370d50fe950357fe088c0d9a76df793250059f2e6c7dcdb97baec6b9ec?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Gurneesh Chahal"},"url":"https:\/\/webkul.com\/blog\/author\/gurneeshchahal-cloud707\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/201711","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/286"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=201711"}],"version-history":[{"count":43,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/201711\/revisions"}],"predecessor-version":[{"id":258582,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/201711\/revisions\/258582"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=201711"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=201711"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=201711"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}