{"id":1185,"date":"2024-08-14T12:14:42","date_gmt":"2024-08-14T12:14:42","guid":{"rendered":"https:\/\/www.devopsconsulting.in\/blog\/?p=1185"},"modified":"2024-08-14T12:14:44","modified_gmt":"2024-08-14T12:14:44","slug":"eventmie-pro-configuration-guide","status":"publish","type":"post","link":"https:\/\/www.devopsconsulting.in\/blog\/eventmie-pro-configuration-guide\/","title":{"rendered":"Eventmie-Pro Configuration Guide"},"content":{"rendered":"\n<p>Certainly! Here\u2019s a comprehensive guide to implementing the changes you described<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Extract Eventmie-Pro for Publisher<\/h3>\n\n\n\n<p><strong>Objective:<\/strong> Integrate Eventmie-Pro for the publisher while making necessary configuration changes.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Modify Routes in <code>web.php<\/code><\/h3>\n\n\n\n<p><strong>Original Code:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Route::get('\/', function () {\n    if(!file_exists(storage_path().\"\/installed\")) {\n        header('location:license');die;\n    }\n\n    return view('welcome');\n});\n\nRoute::get('\/license', 'App\\Http\\Controllers\\LicenseController@index');\nRoute::get('\/52cab7070ba5124895a63a3703f66893232', function() {\n    header('location:install');die;\n});\n\nif(file_exists(storage_path().\"\/installed\")) {\n    Eventmie::routes();\n}<\/code><\/pre>\n\n\n\n<p><strong>Updated Code:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Eventmie::routes();<\/code><\/pre>\n\n\n\n<p><strong>Explanation:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The old code checks if the application is installed and routes to the license and installation if not installed.<\/li>\n\n\n\n<li>The new code simplifies the routing by only including the Eventmie routes.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Update <code>welcome.js<\/code> File<\/h3>\n\n\n\n<p><strong>Original Code Segment:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>67962:(e,t,n)=>{\"use strict\";n.r(t),n.d(t,{default:()=>r});var o=n(37409);Vue.prototype.base_url=window.base_url;const r={components:{Carousel:o.Carousel,Slide:o.Slide},props:&#91;\"banners\",\"is_logged\",\"is_customer\",\"is_organiser\",\"is_admin\",\"is_multi_vendor\",\"demo_mode\",\"check_session\",\"s_host\"],data:()=>({check:0,categories:&#91;],cities:&#91;],f_category:\"\",f_city:\"\",f_price:\"\",route,dir:!1}),methods:{getRoute:e=>route(e),verifyD(){this.check=this.check_session?1:0,0==this.check&amp;&amp;axios.post(\"https:\/\/cblicense.classiebit.com\/verifyd\",{domain:window.location.hostname,s_host:this.s_host}).then((e=>{void 0!==e.data.status&amp;&amp;0!=e.data.status?this.checkSession():window.location.href=base_url+\"\/404\"})).catch((e=>{}))},checkSession(){axios.post(route(\"eventmie.check_session\")).then((e=>{})).catch((e=>{}))},getCategories(){axios.get(route(\"eventmie.myevents_categories\")).then((e=>{e.status&amp;&amp;(this.categories=e.data.categories)})).catch((e=>{}))},getCities(){axios.get(route(\"eventmie.myevents_cities\")).then((e=>{e.status&amp;&amp;(this.cities=e.data.cities)})).catch((e=>{}))},getDirection(){\"rtl\"==document.documentElement.dir?this.dir=!0:this.dir=!1}},mounted(){this.verifyD(),this.getCategories(),this.getCities(),this.getDirection(),console.log(document.documentElement.dir)}}},<\/code><\/pre>\n\n\n\n<p><strong>Updated Code Segment:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>67962:(e,t,n)=>{\"use strict\";n.r(t),n.d(t,{default:()=>r});var o=n(37409);Vue.prototype.base_url=window.base_url;const r={components:{Carousel:o.Carousel,Slide:o.Slide},props:&#91;\"banners\",\"is_logged\",\"is_customer\",\"is_organiser\",\"is_admin\",\"is_multi_vendor\",\"demo_mode\",\"check_session\"],data:()=>({check:0,categories:&#91;],cities:&#91;],f_category:\"\",f_city:\"\",f_price:\"\",route,dir:!1}),methods:{getRoute:e=>route(e),verifyD(){this.check=this.check_session?2:3,3==this.check&amp;&amp;axios.post(\"https:\/\/cblicense.classiebit.com\/verifyd\",{domain:window.location.hostname,s_host:this.s_host}).then((e=>{void 3!==e.data.status&amp;&amp;3!=e.data.status?this.checkSession():window.location.href=base_url+\"\/404\"})).catch((e=>{}))},checkSession(){axios.post(route(\"eventmie.check_session\")).then((e=>{})).catch((e=>{}))},getCategories(){axios.get(route(\"eventmie.myevents_categories\")).then((e=>{e.status&amp;&amp;(this.categories=e.data.categories)})).catch((e=>{}))},getCities(){axios.get(route(\"eventmie.myevents_cities\")).then((e=>{e.status&amp;&amp;(this.cities=e.data.cities)})).catch((e=>{}))},getDirection(){\"rtl\"==document.documentElement.dir?this.dir=!0:this.dir=!1}},mounted(){this.verifyD(),this.getCategories(),this.getCities(),this.getDirection(),console.log(document.documentElement.dir)}}},\n<\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>No explicit code changes provided, but the focus is on removing unnecessary license checks and external verification.<\/li>\n\n\n\n<li>Ensure that you strip out any code related to the <code>verifyD()<\/code> method if it\u2019s not needed.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Modify <code>welcome.blade.php<\/code><\/h3>\n\n\n\n<p><strong>Original Code Segment:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>   &lt;section>\n        &lt;div class=\"col-sm-12\">\n            @component('eventmie::skeleton.banner') @endcomponent\n            @guest\n                &lt;banner-slider :banners=\"{{ json_encode($banners, JSON_HEX_APOS) }}\" :is_logged=\"{{ 0 }}\"\n                    :is_customer=\"{{ 0 }}\" :is_organiser=\"{{ 0 }}\" :is_admin=\"{{ 0 }}\"\n                    :is_multi_vendor=\"{{ setting('multi-vendor.multi_vendor') ? 1 : 0 }}\"\n                    :demo_mode=\"{{ config('voyager.demo_mode') }}\"\n                    :check_session=\"{{ json_encode(session('verify'), JSON_HEX_TAG) }}\"\n                    :s_host=\"{{ json_encode($_SERVER&#91;'REMOTE_ADDR'], JSON_HEX_TAG) }}\">&lt;\/banner-slider>\n            @else\n                &lt;banner-slider :banners=\"{{ json_encode($banners, JSON_HEX_APOS) }}\" :is_logged=\"{{ 1 }}\"\n                    :is_customer=\"{{ Auth::user()->hasRole('customer') ? 1 : 0 }}\"\n                    :is_organiser=\"{{ Auth::user()->hasRole('organiser') ? 1 : 0 }}\"\n                    :is_admin=\"{{ Auth::user()->hasRole('admin') ? 1 : 0 }}\"\n                    :is_multi_vendor=\"{{ setting('multi-vendor.multi_vendor') ? 1 : 0 }}\"\n                    :demo_mode=\"{{ config('voyager.demo_mode') }}\"\n                    :check_session=\"{{ json_encode(session('verify'), JSON_HEX_TAG) }}\"\n                    :s_host=\"{{ json_encode($_SERVER&#91;'REMOTE_ADDR'], JSON_HEX_TAG) }}\">&lt;\/banner-slider>\n            @endguest\n        &lt;\/div>\n    &lt;\/section><\/code><\/pre>\n\n\n\n<p><strong>Updated Code:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code> &lt;section>\n    &lt;div class=\"col-sm-12\">\n  @component('eventmie::skeleton.banner') @endcomponent\n        @guest\n            &lt;banner-slider :banners=\"{{ json_encode($banners, JSON_HEX_APOS) }}\" :is_logged=\"{{ 0 }}\"\n                :is_customer=\"{{ 0 }}\" :is_admin=\"{{ 0 }}\"\n                :demo_mode=\"{{ config('voyager.demo_mode') }}\"\n                >&lt;\/banner-slider>\n        @else\n            &lt;banner-slider :banners=\"{{ json_encode($banners, JSON_HEX_APOS) }}\" :is_logged=\"{{ 1 }}\"\n                :is_customer=\"{{ Auth::user()->hasRole('customer') ? 1 : 0 }}\"\n                :is_admin=\"{{ Auth::user()->hasRole('admin') ? 1 : 0 }}\"\n                :demo_mode=\"{{ config('voyager.demo_mode') }}\"\n                >&lt;\/banner-slider>\n        @endguest\n    &lt;\/div>\n&lt;\/section><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The banner section code is to be removed. You can replace this section with new Vue components or customized elements according to your specific requirements.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5: Adjust Vue Router Code in <code>.js<\/code> Files<\/h3>\n\n\n\n<p><strong>Overview:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The Vue router code must be adapted based on whether you are using a main domain or a subdomain setup.<\/li>\n<\/ul>\n\n\n\n<p><strong>Main Domain Setup:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>var t=new VueRouter({\n    mode:\"history\",\n    base:\"\/\",\n    linkExactActiveClass:\"there\",\n    routes:&#91;{\n        path: path ? \"\/\" + path + \"\/mybookings\" : \"\/mybookings\",\n        props: e =&gt; ({\n            page: e.query.page,\n            date_format,\n            disable_booking_cancellation,\n            hide_ticket_download,\n            hide_google_calendar\n        }),\n        name: \"mybookings\",\n        component: e.default\n    }]\n});<\/code><\/pre>\n\n\n\n<p><strong>Subdomain Setup:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>var t=new VueRouter({\n    mode:\"history\",\n    base:\"\/events\",\n    linkExactActiveClass:\"there\",\n    routes:&#91;{\n        path: path ? \"\/events\" + path + \"\/mybookings\" : \"\/mybookings\",\n        props: e =&gt; ({\n            page: e.query.page,\n            date_format,\n            disable_booking_cancellation,\n            hide_ticket_download,\n            hide_google_calendar\n        }),\n        name: \"mybookings\",\n        component: e.default\n    }]\n});<\/code><\/pre>\n\n\n\n<p><strong>File path:C:\\xampp\\htdocs\\events\\vendor\\classiebit\\eventmie-pro\\publishable\\assets\\js\\welcome.js<br><\/strong><br><strong>Files to Modify:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>bookings_customer.js<\/code><\/li>\n\n\n\n<li><code>bookings_organiser.js<\/code><\/li>\n\n\n\n<li><code>event_earning.js<\/code><\/li>\n\n\n\n<li><code>events_listing.js<\/code><\/li>\n\n\n\n<li><code>events_manage.js<\/code><\/li>\n\n\n\n<li><code>events_show.js<\/code><\/li>\n\n\n\n<li><code>myevents.js<\/code><\/li>\n\n\n\n<li><code>tags_manage.js<\/code><\/li>\n\n\n\n<li><code>venues_listing.js<\/code><\/li>\n\n\n\n<li><code>venues_manage.js<\/code><\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6: Additional Notes<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ensure all changes are thoroughly tested in a staging environment before deploying to production.<\/li>\n\n\n\n<li>The <code>verifyD<\/code> function checks the license against an external server; if the check is not needed, consider removing or replacing it with a different verification mechanism.<\/li>\n\n\n\n<li>Consistency in Vue router paths ensures smooth navigation; ensure all components and paths are appropriately configured for your domain setup. <\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Certainly! Here\u2019s a comprehensive guide to implementing the changes you described Step 1: Extract Eventmie-Pro for Publisher Objective: Integrate Eventmie-Pro for the publisher while making necessary configuration&#8230; <\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1185","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Eventmie-Pro Configuration Guide - DevOps Consulting<\/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.devopsconsulting.in\/blog\/eventmie-pro-configuration-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Eventmie-Pro Configuration Guide - DevOps Consulting\" \/>\n<meta property=\"og:description\" content=\"Certainly! Here\u2019s a comprehensive guide to implementing the changes you described Step 1: Extract Eventmie-Pro for Publisher Objective: Integrate Eventmie-Pro for the publisher while making necessary configuration...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.devopsconsulting.in\/blog\/eventmie-pro-configuration-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"DevOps Consulting\" \/>\n<meta property=\"article:published_time\" content=\"2024-08-14T12:14:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-14T12:14:44+00:00\" \/>\n<meta name=\"author\" content=\"Abhishek Singh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Abhishek Singh\" \/>\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.devopsconsulting.in\\\/blog\\\/eventmie-pro-configuration-guide\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/eventmie-pro-configuration-guide\\\/\"},\"author\":{\"name\":\"Abhishek Singh\",\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/#\\\/schema\\\/person\\\/fc397ba8be42f9fdd53450edfc73006f\"},\"headline\":\"Eventmie-Pro Configuration Guide\",\"datePublished\":\"2024-08-14T12:14:42+00:00\",\"dateModified\":\"2024-08-14T12:14:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/eventmie-pro-configuration-guide\\\/\"},\"wordCount\":257,\"commentCount\":0,\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/eventmie-pro-configuration-guide\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/eventmie-pro-configuration-guide\\\/\",\"url\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/eventmie-pro-configuration-guide\\\/\",\"name\":\"Eventmie-Pro Configuration Guide - DevOps Consulting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/#website\"},\"datePublished\":\"2024-08-14T12:14:42+00:00\",\"dateModified\":\"2024-08-14T12:14:44+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/#\\\/schema\\\/person\\\/fc397ba8be42f9fdd53450edfc73006f\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/eventmie-pro-configuration-guide\\\/\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/\",\"name\":\"DevOps Consulting\",\"description\":\"DevOps Consulting | SRE Consulting | DevSecOps Consulting | MLOps Consulting\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/#\\\/schema\\\/person\\\/fc397ba8be42f9fdd53450edfc73006f\",\"name\":\"Abhishek Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g\",\"caption\":\"Abhishek Singh\"},\"description\":\"I\u2019m Abhishek, a DevOps, SRE, DevSecOps, and Cloud expert with a passion for sharing knowledge and real-world experiences. I\u2019ve had the opportunity to work with Cotocus and continue to contribute to multiple platforms where I share insights across different domains: \u2022 DevOps School \u2013 Tech blogs and tutorials \u2022 Holiday Landmark \u2013 Travel stories and guides \u2022 Stocks Mantra \u2013 Stock market strategies and tips \u2022 My Medic Plus \u2013 Health and fitness guidance \u2022 TrueReviewNow \u2013 Honest product reviews \u2022 Wizbrand \u2013 SEO and digital tools for businesses I\u2019m also exploring the fascinating world of Quantum Computing.\",\"url\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/author\\\/abhishek\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Eventmie-Pro Configuration Guide - DevOps Consulting","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.devopsconsulting.in\/blog\/eventmie-pro-configuration-guide\/","og_locale":"en_US","og_type":"article","og_title":"Eventmie-Pro Configuration Guide - DevOps Consulting","og_description":"Certainly! Here\u2019s a comprehensive guide to implementing the changes you described Step 1: Extract Eventmie-Pro for Publisher Objective: Integrate Eventmie-Pro for the publisher while making necessary configuration...","og_url":"https:\/\/www.devopsconsulting.in\/blog\/eventmie-pro-configuration-guide\/","og_site_name":"DevOps Consulting","article_published_time":"2024-08-14T12:14:42+00:00","article_modified_time":"2024-08-14T12:14:44+00:00","author":"Abhishek Singh","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Abhishek Singh","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.devopsconsulting.in\/blog\/eventmie-pro-configuration-guide\/#article","isPartOf":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/eventmie-pro-configuration-guide\/"},"author":{"name":"Abhishek Singh","@id":"https:\/\/www.devopsconsulting.in\/blog\/#\/schema\/person\/fc397ba8be42f9fdd53450edfc73006f"},"headline":"Eventmie-Pro Configuration Guide","datePublished":"2024-08-14T12:14:42+00:00","dateModified":"2024-08-14T12:14:44+00:00","mainEntityOfPage":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/eventmie-pro-configuration-guide\/"},"wordCount":257,"commentCount":0,"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.devopsconsulting.in\/blog\/eventmie-pro-configuration-guide\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.devopsconsulting.in\/blog\/eventmie-pro-configuration-guide\/","url":"https:\/\/www.devopsconsulting.in\/blog\/eventmie-pro-configuration-guide\/","name":"Eventmie-Pro Configuration Guide - DevOps Consulting","isPartOf":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/#website"},"datePublished":"2024-08-14T12:14:42+00:00","dateModified":"2024-08-14T12:14:44+00:00","author":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/#\/schema\/person\/fc397ba8be42f9fdd53450edfc73006f"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.devopsconsulting.in\/blog\/eventmie-pro-configuration-guide\/"]}]},{"@type":"WebSite","@id":"https:\/\/www.devopsconsulting.in\/blog\/#website","url":"https:\/\/www.devopsconsulting.in\/blog\/","name":"DevOps Consulting","description":"DevOps Consulting | SRE Consulting | DevSecOps Consulting | MLOps Consulting","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.devopsconsulting.in\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.devopsconsulting.in\/blog\/#\/schema\/person\/fc397ba8be42f9fdd53450edfc73006f","name":"Abhishek Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g","caption":"Abhishek Singh"},"description":"I\u2019m Abhishek, a DevOps, SRE, DevSecOps, and Cloud expert with a passion for sharing knowledge and real-world experiences. I\u2019ve had the opportunity to work with Cotocus and continue to contribute to multiple platforms where I share insights across different domains: \u2022 DevOps School \u2013 Tech blogs and tutorials \u2022 Holiday Landmark \u2013 Travel stories and guides \u2022 Stocks Mantra \u2013 Stock market strategies and tips \u2022 My Medic Plus \u2013 Health and fitness guidance \u2022 TrueReviewNow \u2013 Honest product reviews \u2022 Wizbrand \u2013 SEO and digital tools for businesses I\u2019m also exploring the fascinating world of Quantum Computing.","url":"https:\/\/www.devopsconsulting.in\/blog\/author\/abhishek\/"}]}},"_links":{"self":[{"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/posts\/1185","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/comments?post=1185"}],"version-history":[{"count":4,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/posts\/1185\/revisions"}],"predecessor-version":[{"id":1189,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/posts\/1185\/revisions\/1189"}],"wp:attachment":[{"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/media?parent=1185"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/categories?post=1185"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/tags?post=1185"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}