{"id":15613,"date":"2025-08-14T16:35:15","date_gmt":"2025-08-14T11:05:15","guid":{"rendered":"https:\/\/www.skynats.com\/?p=15613"},"modified":"2025-09-01T16:46:52","modified_gmt":"2025-09-01T11:16:52","slug":"gitea-runner-deployment-for-wordpress-auto-deployment","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/gitea-runner-deployment-for-wordpress-auto-deployment\/","title":{"rendered":"Gitea Runner Deployment for WordPress Auto Deployment"},"content":{"rendered":"\n<p>In our previous blogs, we explored Installing Gitea and Pushing a Fresh Git Repository to the<mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\"> <\/mark><a href=\"https:\/\/about.gitea.com\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">Gitea<\/mark><\/a> Server.<\/p>\n\n\n\n<p>Now that we have a working Gitea setup and know how to manage our repositories, it\u2019s time to take the next step \u2014 automating deployments.<\/p>\n\n\n\n<p>Manually updating your WordPress site every time you push code can be tedious, time-consuming job<\/p>\n\n\n\n<p>With Gitea Actions Runner (act_runner), we can automate this process so that every push to the repository automatically deploys the changes to your live server.<\/p>\n\n\n\n<p>In this guide, we\u2019ll walk you through setting up a Gitea Runner for Auto Deployment \u2014 from installation and configuration to writing the workflow that syncs files directly to your WordPress directory.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-prerequisites\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A working WordPress website hosted on any Linux server.<\/li>\n\n\n\n<li>Git installed (required for pulling\/pushing code)<\/li>\n\n\n\n<li>Access to the server as root or sudo user<\/li>\n\n\n\n<li>A non-root user for WordPress file ownership<\/li>\n\n\n\n<li>Node.js and npm installed (required by act_runner) which can be installed using:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code> apt install nodejs npm<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-step-1-download-and-install-gitea-runner\"><strong>Step 1:<\/strong> Download and Install Gitea Runner<\/h2>\n\n\n\n<p>Gitea provides a self-hosted runner called act_runner (go to <a href=\"https:\/\/dl.gitea.com\/act_runner\/\">https:\/\/dl.gitea.com\/act_runner\/<\/a> for download). To install it:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#wget -O act_runner.tar.gz https:\/\/dl.gitea.com\/act_runner\/0.2.12\/act_runner-0.2.12-linux-amd64\n\n#tar -xvf act_runner.tar.gz\n#mv act_runner \/usr\/local\/bin\/<\/code><\/pre>\n\n\n\n<p>Make sure the binary is executable:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#chmod +x \/usr\/local\/bin\/act_runner<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-step-2-generate-registration-token\"><strong>Step 2:<\/strong> Generate Registration Token<\/h2>\n\n\n\n<p>Log in to your Gitea web interface.<\/p>\n\n\n\n<p>Navigate to your repository \u2192 Settings \u2192 Actions \u2192 Runners.<\/p>\n\n\n\n<p>Click &#8220;Generate Registration Token&#8221; and&nbsp; it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-step-3-create-the-configuration-file\"><strong>Step 3:<\/strong> Create the Configuration File<\/h2>\n\n\n\n<p>Create a directory for your runner config:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#mkdir -p \/etc\/act_runner\n#cd \/etc\/act_runner\n#vim \/etc\/act_runner\/config.yaml<\/code><\/pre>\n\n\n\n<p>Here\u2019s an example configuration:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>log:\n  level: info\n\nrunner:\n  file: .runner\n  capacity: 1\n  timeout: 3h\n  shutdown_timeout: 0s\n  insecure: false\n  fetch_timeout: 5s\n  fetch_interval: 2s\n  executor: host\n  labels:\n    - \"host\"\n\nhost:\n  workdir_parent: \/home\/act_runner\/work<\/code><\/pre>\n\n\n\n<p>Ensure labels is set as &#8220;host&#8221;.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-step-4-register-the-runner\"><strong>Step 4:<\/strong> Register the Runner<\/h2>\n\n\n\n<p>Run the following command to register the runner with Gitea:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/usr\/local\/bin\/act_runner --config \/etc\/act_runner\/config.yaml register<\/code><\/pre>\n\n\n\n<p>You\u2019ll be prompted to enter:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Gitea instance URL<\/li>\n\n\n\n<li>Token<\/li>\n\n\n\n<li>Runner name (optional)<\/li>\n\n\n\n<li>Labels (use host)<\/li>\n<\/ul>\n\n\n\n<p>After registration, a file named .runner will be created in the current directory (\/etc\/act_runner).<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-5-create-a-system-user-for-the-runner\"><strong>Step 5:<\/strong> Create a System User for the Runner<\/h3>\n\n\n\n<p>For better security and separation of privileges, create a dedicated system user:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#useradd --system --shell \/usr\/sbin\/nologin --create-home act_runner<\/code><\/pre>\n\n\n\n<p>Give the user sudo privileges (needed for rsync and chown):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#visudo<\/code><\/pre>\n\n\n\n<p>Add the line:<\/p>\n\n\n\n<p>act_runner ALL=(ALL) NOPASSWD:ALL<\/p>\n\n\n\n<p>Also, create the required work directory:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#mkdir -p \/home\/act_runner\/work\n#chown -R act_runner:act_runner \/home\/act_runner<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-step-6-create-workflow-file-for-auto-deployment\"><strong>Step 6:<\/strong> Create Workflow File for Auto Deployment<\/h2>\n\n\n\n<p>Inside your Gitea repository, create the following directory structure:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#mkdir -p .gitea\/workflows\n#vim .gitea\/workflows\/deploy.yml<\/code><\/pre>\n\n\n\n<p>Paste this content:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>name: Auto Deploy\n\non:\n  push:\n    branches:\n      - main\n\njobs:\n  deploy:\n    runs-on: host\n    steps:\n      - name: Checkout Code\n        uses: actions\/checkout@v3\n\n      - name: Rsync to Production\n        run: |\n          sudo rsync -av --delete .\/ \/home\/giteatest2\/public_html\/\n          sudo chown -R giteatest2:giteatest2 \/home\/giteatest2\/public_html\/<\/code><\/pre>\n\n\n\n<p>Replace \/home\/giteatest2\/public_html\/ with your actual WordPress directory.<\/p>\n\n\n\n<p>rsync: Syncs the codebase.<\/p>\n\n\n\n<p>chown: Resets file ownership post-deployment.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-7-reload-and-restart-the-act-runner-service\"><strong>Step 7:<\/strong> Reload and Restart the Act Runner Service:<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>#systemctl daemon-reexec\n#systemctl daemon-reload\n#systemctl restart act_runner<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-8-commit-and-push-code\"><strong>Step 8:<\/strong> Commit and Push Code<\/h3>\n\n\n\n<p>Push your website files from the working directory:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#su act_runner -\n#cd \/home\/testdev\/public_html\/\n#git init\n#git remote add origin http:\/\/your-gitea-server\/gituser\/repo.git\n#git add .\n#git commit -m \"Initial commit of WordPress site\"\n#git push -u origin main<\/code><\/pre>\n\n\n\n<p>To commit only the workflow file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#git add .gitea\/workflows\/deploy.yml\n#git commit -m \"Add deployment workflow\"\n#git push<\/code><\/pre>\n\n\n\n<p>Once pushed, the act_runner will detect the change and deploy automatically!<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-conclusion\"><strong>Conclusion<\/strong><\/h3>\n\n\n\n<p>With Gitea Runner configured, you now have a fully automated deployment pipeline for your WordPress site.<\/p>\n\n\n\n<p>Every time you push changes to your repository, your server will pull the latest code, sync it to the production directory, and update file permissions \u2014 all without manual intervention.<\/p>\n\n\n\n<p>Need expert help with Gitea Runner Deployment for WordPress? Our <a href=\"https:\/\/www.skynats.com\/devops-support\/\">DevOps support services<\/a> ensure seamless automation, fast deployment, and reliable performance. Contact us today to get started!<br><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In our previous blogs, we explored Installing Gitea and Pushing a Fresh Git Repository to the Gitea Server. Now that we have a working Gitea setup and know how to manage our repositories, it\u2019s time to take the next step \u2014 automating deployments. Manually updating your WordPress site every time you push code can be [&hellip;]<\/p>\n","protected":false},"author":13,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[1064,1079,284],"class_list":["post-15613","post","type-post","status-publish","format-standard","hentry","category-blog","tag-devops-support-services","tag-gitea","tag-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Gitea Runner Deployment for WordPress \u2013 Auto Deploy Made Easy<\/title>\n<meta name=\"description\" content=\"Gitea Runner Deployment for WordPress made simple. Automate updates in seconds\u2014boost efficiency and deploy faster today!\" \/>\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.skynats.com\/blog\/gitea-runner-deployment-for-wordpress-auto-deployment\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Gitea Runner Deployment for WordPress Auto Deployment\" \/>\n<meta property=\"og:description\" content=\"Gitea Runner Deployment for WordPress made simple. Automate updates in seconds\u2014boost efficiency and deploy faster today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/gitea-runner-deployment-for-wordpress-auto-deployment\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-14T11:05:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-01T11:16:52+00:00\" \/>\n<meta name=\"author\" content=\"Sourav AJ\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sourav AJ\" \/>\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:\\\/\\\/www.skynats.com\\\/blog\\\/gitea-runner-deployment-for-wordpress-auto-deployment\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/gitea-runner-deployment-for-wordpress-auto-deployment\\\/\"},\"author\":{\"name\":\"Sourav AJ\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/255d12fc66a62db365022ecbb5846276\"},\"headline\":\"Gitea Runner Deployment for WordPress Auto Deployment\",\"datePublished\":\"2025-08-14T11:05:15+00:00\",\"dateModified\":\"2025-09-01T11:16:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/gitea-runner-deployment-for-wordpress-auto-deployment\\\/\"},\"wordCount\":493,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"devops support services\",\"Gitea\",\"wordpress\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/gitea-runner-deployment-for-wordpress-auto-deployment\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/gitea-runner-deployment-for-wordpress-auto-deployment\\\/\",\"name\":\"Gitea Runner Deployment for WordPress \u2013 Auto Deploy Made Easy\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-08-14T11:05:15+00:00\",\"dateModified\":\"2025-09-01T11:16:52+00:00\",\"description\":\"Gitea Runner Deployment for WordPress made simple. Automate updates in seconds\u2014boost efficiency and deploy faster today!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/gitea-runner-deployment-for-wordpress-auto-deployment\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/gitea-runner-deployment-for-wordpress-auto-deployment\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/gitea-runner-deployment-for-wordpress-auto-deployment\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Gitea Runner Deployment for WordPress Auto Deployment\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/255d12fc66a62db365022ecbb5846276\",\"name\":\"Sourav AJ\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"caption\":\"Sourav AJ\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Gitea Runner Deployment for WordPress \u2013 Auto Deploy Made Easy","description":"Gitea Runner Deployment for WordPress made simple. Automate updates in seconds\u2014boost efficiency and deploy faster today!","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.skynats.com\/blog\/gitea-runner-deployment-for-wordpress-auto-deployment\/","og_locale":"en_US","og_type":"article","og_title":"Gitea Runner Deployment for WordPress Auto Deployment","og_description":"Gitea Runner Deployment for WordPress made simple. Automate updates in seconds\u2014boost efficiency and deploy faster today!","og_url":"https:\/\/www.skynats.com\/blog\/gitea-runner-deployment-for-wordpress-auto-deployment\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-08-14T11:05:15+00:00","article_modified_time":"2025-09-01T11:16:52+00:00","author":"Sourav AJ","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Sourav AJ","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/gitea-runner-deployment-for-wordpress-auto-deployment\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/gitea-runner-deployment-for-wordpress-auto-deployment\/"},"author":{"name":"Sourav AJ","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/255d12fc66a62db365022ecbb5846276"},"headline":"Gitea Runner Deployment for WordPress Auto Deployment","datePublished":"2025-08-14T11:05:15+00:00","dateModified":"2025-09-01T11:16:52+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/gitea-runner-deployment-for-wordpress-auto-deployment\/"},"wordCount":493,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["devops support services","Gitea","wordpress"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/gitea-runner-deployment-for-wordpress-auto-deployment\/","url":"https:\/\/www.skynats.com\/blog\/gitea-runner-deployment-for-wordpress-auto-deployment\/","name":"Gitea Runner Deployment for WordPress \u2013 Auto Deploy Made Easy","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-08-14T11:05:15+00:00","dateModified":"2025-09-01T11:16:52+00:00","description":"Gitea Runner Deployment for WordPress made simple. Automate updates in seconds\u2014boost efficiency and deploy faster today!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/gitea-runner-deployment-for-wordpress-auto-deployment\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/gitea-runner-deployment-for-wordpress-auto-deployment\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/gitea-runner-deployment-for-wordpress-auto-deployment\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Gitea Runner Deployment for WordPress Auto Deployment"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/255d12fc66a62db365022ecbb5846276","name":"Sourav AJ","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","caption":"Sourav AJ"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15613","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=15613"}],"version-history":[{"count":2,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15613\/revisions"}],"predecessor-version":[{"id":15689,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15613\/revisions\/15689"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=15613"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=15613"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=15613"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}