{"id":7665,"date":"2024-06-04T21:31:05","date_gmt":"2024-06-05T04:31:05","guid":{"rendered":"https:\/\/ioflood.com\/blog\/?p=7665"},"modified":"2024-06-04T21:33:16","modified_gmt":"2024-06-05T04:33:16","slug":"install-gitea-linux","status":"publish","type":"post","link":"https:\/\/ioflood.com\/blog\/install-gitea-linux\/","title":{"rendered":"Gitea Setup Guide | Installation Methods for Linux"},"content":{"rendered":"<div class=\"wp-block-image\">\n<figure class=\"alignright size-full is-resized\"><img decoding=\"async\" src=\"https:\/\/ioflood.com\/blog\/wp-content\/uploads\/2024\/06\/Design-of-engineers-setting-up-Gitea-on-Linux-in-an-IOFLOOD-datacenter-enhancing-code-collaboration-300x300.jpg\" alt=\"Design of engineers setting up Gitea on Linux in an IOFLOOD datacenter enhancing code collaboration\" width=\"300\" height=\"300\" title=\"\"><\/figure>\n<\/div>\n<p>We utilize self-hosted Git repository solutions commonly while developing software for Linux servers at <a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/ioflood.com\/\">IOFLOOD<\/a>. From our experience, Gitea&#8217;s user-friendly Git workflows and collaboration tools makes it an ideal platform for managing code repositories and projects. Todays article has been filled with tips and tricks too empower our customers and fellow developers with the knowledge and steps required to enhance their collaboritive programming experience on <a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/ioflood.com\/phoenix-dedicated-servers.php\">dedicated Remote servers<\/a>.<\/p>\n<p><strong>In this guide, we will navigate you through the process of installing Gitea on your Linux system.<\/strong> We will show you methods for installing with APT distros like Ubuntu and Debian as well as YUM-based distributions like CentOS and AlmaLinux. We&#8217;ll also delve into more advanced topics like compiling Gitea from the source, how to install a specific version, and finally, how to use the Gitea command and verify that the correct version is installed.<\/p>\n<p>Let&#8217;s dive in and begin installing Gitea on your Linux system!<\/p>\n<h2>TL;DR: How Do I Install Gitea on Linux?<\/h2>\n<blockquote><p>\n  To install Gitea on Debian-based systems like Ubuntu, use <code>sudo apt-get install gitea<\/code>. For RPM-based systems like CentOS, use <code>sudo yum install gitea<\/code>. You can then access Gitea via your web browser at <code>http:\/\/localhost:3000<\/code> after starting the Gitea service. You can also download the <a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/docs.gitea.com\/installation\/install-from-binary\" target=\"_blank\" rel=\"noopener\">Gitea binary<\/a> from the official website using the <code>wget<\/code> command.\n<\/p><\/blockquote>\n<p>Here&#8217;s a quick example:<\/p>\n<pre><code class=\"language-bash line-numbers\">wget -O gitea https:\/\/dl.gitea.io\/gitea\/1.14.1\/gitea-1.14.1-linux-amd64\nchmod +x gitea\n.\/gitea web\n<\/code><\/pre>\n<p>This will download the Gitea binary, make it executable, and start the Gitea web service. You should now be able to access Gitea at <code>http:\/\/localhost:3000<\/code> in your web browser.<\/p>\n<p>While this is a basic way to install Gitea on Linux, there&#8217;s much more to learn about installing and using Gitea. Continue reading for more detailed information and advanced installation options.<\/p>\n<h2>Basic Gitea Installation on Linux<\/h2>\n<p>Gitea is a self-hosted Git service, much like GitHub or GitLab, but significantly lighter and easy to install. It&#8217;s a fantastic tool for developers and teams who want to manage their Git repositories on their own server, offering a user-friendly interface and a host of features.<\/p>\n<p>Now, let&#8217;s discuss how to install Gitea on Linux. We will primarily focus on two package management systems, APT and YUM, which are widely used in various Linux distributions.<\/p>\n<h3>Installing Gitea with APT (Debian, Ubuntu)<\/h3>\n<p>If you&#8217;re using a Debian-based distribution like Ubuntu, you can install Gitea using the APT package manager. Here&#8217;s how:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get update\nsudo apt-get install git\nwget -O gitea https:\/\/dl.gitea.io\/gitea\/1.14.1\/gitea-1.14.1-linux-amd64\nchmod +x gitea\n<\/code><\/pre>\n<p>In this code block, we first update the package lists for upgrades and new package installations (<code>sudo apt-get update<\/code>). Next, we install Git (<code>sudo apt-get install git<\/code>). We then download the latest Gitea binary using the <code>wget<\/code> command and make it executable with <code>chmod +x gitea<\/code>.<\/p>\n<h3>Installing Gitea with YUM (CentOS, RHEL)<\/h3>\n<p>If you&#8217;re using a Red Hat-based distribution like CentOS, you can use the YUM package manager to install Gitea. Here&#8217;s the process:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo yum update\nsudo yum install git\nwget -O gitea https:\/\/dl.gitea.io\/gitea\/1.14.1\/gitea-1.14.1-linux-amd64\nchmod +x gitea\n<\/code><\/pre>\n<p>This code block is very similar to the APT one. We start by updating the system (<code>sudo yum update<\/code>), then install Git (<code>sudo yum install git<\/code>). Finally, we download the Gitea binary and make it executable (<code>chmod +x gitea<\/code>).<\/p>\n<p>In both methods, you have now installed Gitea on your Linux system. You can start the Gitea service by running <code>.\/gitea web<\/code> in the directory where you downloaded the binary.<\/p>\n<h2>Installing Gitea from Source<\/h2>\n<p>For those who prefer building from source or need a specific version of Gitea, you can compile Gitea from the source code. This method offers a greater level of control over the installation process and can be beneficial for developers who wish to modify or extend the functionality of Gitea.<\/p>\n<p>Here&#8217;s how you can install Gitea from source:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get install git golang\nmkdir -p $GOPATH\/src\/code.gitea.io\ncd $GOPATH\/src\/code.gitea.io\ngit clone https:\/\/github.com\/go-gitea\/gitea.git\ncd gitea\nTAGS=\"bindata\" make build\n<\/code><\/pre>\n<p>This will install the necessary dependencies (<code>git<\/code> and <code>golang<\/code>), clone the Gitea repository, and build the Gitea binary.<\/p>\n<h2>Installing Different Versions of Gitea<\/h2>\n<h3>Installing Specific Version from Source<\/h3>\n<p>If you need a specific version of Gitea, you can check out the desired version&#8217;s tag before building. Here&#8217;s how:<\/p>\n<pre><code class=\"language-bash line-numbers\">cd $GOPATH\/src\/code.gitea.io\/gitea\ngit checkout v1.14.1\nTAGS=\"bindata\" make build\n<\/code><\/pre>\n<p>This will build Gitea version 1.14.1 from source.<\/p>\n<h3>Installing Specific Version with Package Managers<\/h3>\n<h4>With APT<\/h4>\n<p>On Debian-based distributions, you can install a specific version of a package using the <code>=<\/code> operator followed by the version number. However, Gitea&#8217;s binary releases are not available in the official Debian or Ubuntu repositories, so you can&#8217;t install a specific version with APT. You&#8217;ll have to download the specific version from the Gitea website or build it from source.<\/p>\n<h4>With YUM<\/h4>\n<p>Like APT, YUM doesn&#8217;t support installing a specific version of Gitea because it&#8217;s not available in the official repositories of Red Hat-based distributions. You&#8217;ll need to download the specific version from the Gitea website or build it from source.<\/p>\n<h3>Version Comparison<\/h3>\n<p>Each version of Gitea includes new features, improvements, and bug fixes. You can find detailed release notes on the <a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/blog.gitea.io\/\" target=\"_blank\" rel=\"noopener\">Gitea blog<\/a>.<\/p>\n<p>Here&#8217;s a brief comparison of the last three versions:<\/p>\n<table>\n<thead>\n<tr>\n<th>Version<\/th>\n<th>Key Features<\/th>\n<th>Release Date<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>1.14.1<\/td>\n<td>Improved issue search, added support for PostgreSQL 13<\/td>\n<td>April 2021<\/td>\n<\/tr>\n<tr>\n<td>1.14.0<\/td>\n<td>Added support for custom avatars, improved OAuth2 support<\/td>\n<td>March 2021<\/td>\n<\/tr>\n<tr>\n<td>1.13.0<\/td>\n<td>Added support for PostgreSQL 12, improved Docker support<\/td>\n<td>December 2020<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Using and Verifying Gitea<\/h2>\n<h3>Basic Usage of Gitea<\/h3>\n<p>Once you&#8217;ve installed Gitea, you can start it with the <code>.\/gitea web<\/code> command. This will start the Gitea web service, and you can access Gitea at <code>http:\/\/localhost:3000<\/code> in your web browser.<\/p>\n<h3>Verifying the Installation<\/h3>\n<p>You can verify that Gitea is installed correctly and check its version with the <code>.\/gitea --version<\/code> command:<\/p>\n<pre><code class=\"language-bash line-numbers\">.\/gitea --version\n<\/code><\/pre>\n<p>This command should output the version of Gitea that you installed, like this:<\/p>\n<pre><code class=\"language-bash line-numbers\">Gitea version 1.14.1 built with GNU Make 4.1, go1.15.6 : bindata, sqlite, sqlite_unlock_notify\n<\/code><\/pre>\n<p>This confirms that Gitea version 1.14.1 is installed correctly.<\/p>\n<h2>Alternative Git Services<\/h2>\n<p>While Gitea is a powerful and lightweight self-hosted Git service, it&#8217;s not the only option out there. Depending on your needs, you might find GitLab or GitHub to be more suitable. Let&#8217;s explore these alternatives and how to set them up on your Linux system.<\/p>\n<h3>GitLab: An All-in-One DevOps Platform<\/h3>\n<p>GitLab is a comprehensive DevOps platform that integrates a Git repository manager with CI\/CD capabilities, issue tracking, and more. GitLab&#8217;s extensive feature set makes it an excellent choice for teams looking for an all-in-one solution.<\/p>\n<p>To install GitLab on Ubuntu, you can use the Omnibus package, which includes all dependencies and can be configured with a single command:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get update\nsudo apt-get install -y curl openssh-server ca-certificates tzdata postfix\nsudo curl https:\/\/packages.gitlab.com\/install\/repositories\/gitlab\/gitlab-ce\/script.deb.sh | sudo bash\nsudo apt-get install gitlab-ce\n<\/code><\/pre>\n<p>The expected output will be a series of status messages indicating that GitLab and its dependencies are being installed. Once the installation is complete, you can access GitLab by navigating to <code>http:\/\/localhost<\/code> in your web browser.<\/p>\n<h3>GitHub: The World&#8217;s Largest Open Source Community<\/h3>\n<p>GitHub is the world&#8217;s largest open source community and a platform for developers to collaborate on projects. While GitHub is primarily a cloud-based service, you can use GitHub&#8217;s command-line interface, GitHub CLI, to interact with GitHub from your Linux system.<\/p>\n<p>To install GitHub CLI on Ubuntu, you can use the following commands:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-key C99B11DEB97541F0\nsudo apt-add-repository https:\/\/cli.github.com\/packages\nsudo apt update\nsudo apt install gh\n<\/code><\/pre>\n<p>The expected output will be a series of status messages indicating that GitHub CLI is being installed. Once the installation is complete, you can start using GitHub CLI by typing <code>gh<\/code> in your terminal.<\/p>\n<h3>Choosing the Right Git Service<\/h3>\n<p>While Gitea, GitLab, and GitHub all offer robust Git services, the best one for you depends on your specific needs. If you&#8217;re looking for a lightweight, self-hosted solution, Gitea is an excellent choice. If you need a comprehensive DevOps platform, consider GitLab. If you want to collaborate with the world&#8217;s largest open source community, GitHub is the way to go.<\/p>\n<h2>Troubleshooting Gitea Installations<\/h2>\n<p>Installing Gitea on Linux is generally a smooth process, but like any software installation, you might encounter some issues. Here, we&#8217;ll discuss common problems and their solutions, along with some tips for a successful installation.<\/p>\n<h3>Issue: Permission Denied<\/h3>\n<p>One common issue when installing Gitea is a &#8216;Permission Denied&#8217; error. This typically happens when you try to execute the Gitea binary without the necessary permissions.<\/p>\n<p>To solve this issue, you need to make the binary executable using the <code>chmod<\/code> command. Here&#8217;s how:<\/p>\n<pre><code class=\"language-bash line-numbers\">chmod +x gitea\n<\/code><\/pre>\n<p>This command changes the permissions of the <code>gitea<\/code> file and makes it executable. After running this command, you should be able to start the Gitea service without any &#8216;Permission Denied&#8217; errors.<\/p>\n<h3>Issue: Gitea Service Not Starting<\/h3>\n<p>Sometimes, after installing Gitea and making the binary executable, the Gitea service might not start when you run <code>.\/gitea web<\/code>. This could be due to various reasons, such as port conflicts or insufficient system resources.<\/p>\n<p>To troubleshoot this issue, you can check the Gitea log file, which is typically located at <code>\/var\/log\/gitea\/gitea.log<\/code>:<\/p>\n<pre><code class=\"language-bash line-numbers\">cat \/var\/log\/gitea\/gitea.log\n<\/code><\/pre>\n<p>This command will display the contents of the log file, which should give you clues about why the Gitea service isn&#8217;t starting.<\/p>\n<h3>Considerations for a Smooth Installation<\/h3>\n<p>When installing Gitea on Linux, consider the following tips for a smooth installation:<\/p>\n<ul>\n<li><strong>Update Your System<\/strong>: Always start by updating your system packages. This ensures that you have the latest security patches and software updates, which can prevent installation issues.<\/p>\n<\/li>\n<li>\n<p><strong>Check System Requirements<\/strong>: Make sure your system meets the <a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/docs.gitea.io\/en-us\/install-from-binary\/\" target=\"_blank\" rel=\"noopener\">minimum requirements<\/a> for running Gitea. This includes having a compatible operating system and enough disk space and memory.<\/p>\n<\/li>\n<li>\n<p><strong>Follow the Documentation<\/strong>: The <a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/docs.gitea.io\/en-us\/\" target=\"_blank\" rel=\"noopener\">official Gitea documentation<\/a> is a valuable resource. It offers detailed installation guides for various operating systems and configurations.<\/p>\n<\/li>\n<li>\n<p><strong>Ask for Help<\/strong>: If you&#8217;re stuck, don&#8217;t hesitate to ask for help. The Gitea community is active and supportive, and you can usually find help on the <a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/discourse.gitea.io\/\" target=\"_blank\" rel=\"noopener\">Gitea Discourse forum<\/a> or <a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/github.com\/go-gitea\/gitea\/issues\" target=\"_blank\" rel=\"noopener\">Gitea GitHub page<\/a>.<\/p>\n<\/li>\n<\/ul>\n<p>By being aware of potential issues and how to solve them, you&#8217;ll be well-prepared for a successful Gitea installation.<\/p>\n<h2>Importance of Version Control Systems<\/h2>\n<p>Version Control Systems (VCS) are a critical tool in software development. They track and manage changes to the codebase, allowing developers to work simultaneously without overwriting each other&#8217;s changes. They also provide a historical record of the code, making it easy to roll back changes if needed.<\/p>\n<p>One of the most popular VCS is Git. It&#8217;s a distributed version control system that allows multiple developers to work on a project simultaneously. Git provides a robust and efficient way to manage large codebases and is used by developers worldwide.<\/p>\n<pre><code class=\"language-bash line-numbers\">git init\ngit add .\ngit commit -m 'Initial commit'\n<\/code><\/pre>\n<p>In this code block, we initialize a new Git repository with <code>git init<\/code>, add all files in the current directory to the staging area with <code>git add .<\/code>, and make our first commit with <code>git commit -m 'Initial commit'<\/code>. This sets the foundation for tracking and managing changes to our project.<\/p>\n<h2>The Power of Self-Hosted Git Services<\/h2>\n<p>While Git provides the framework for version control, it&#8217;s often used in conjunction with a Git service like GitHub, GitLab, or Gitea. These services offer a user-friendly interface for managing Git repositories, along with additional features like issue tracking, pull requests, and continuous integration.<\/p>\n<p>Self-hosted Git services offer several advantages. They provide full control over the server, enhanced security, and the flexibility to customize the service to fit your needs. For teams concerned about privacy and data security, a self-hosted Git service is an excellent choice.<\/p>\n<h2>Why Choose Gitea?<\/h2>\n<p>Gitea stands out among self-hosted Git services for its lightweight design and ease of installation. It&#8217;s written in Go, making it extremely efficient and capable of running on minimal hardware. This makes Gitea a great choice for small teams or individual developers.<\/p>\n<p>In addition to its lightweight design, Gitea offers a host of features, including a user-friendly web interface, issue tracking, and built-in wiki. It also supports LDAP authentication, making it easy to integrate with your existing user management system.<\/p>\n<pre><code class=\"language-bash line-numbers\">.\/gitea admin create-user --username myuser --password mypassword --email myuser@example.com\n<\/code><\/pre>\n<p>In this code block, we use the Gitea command-line interface to create a new user. The <code>.\/gitea admin create-user<\/code> command creates a new user with the specified username, password, and email. This demonstrates the ease of user management in Gitea.<\/p>\n<p>In conclusion, whether you&#8217;re a solo developer or part of a team, Gitea offers a lightweight, efficient, and feature-rich platform for managing your Git repositories.<\/p>\n<h2>Role of Gitea in DevOps<\/h2>\n<p>Gitea is not only a self-hosted Git service but also a powerful tool in the realm of DevOps and Continuous Integration\/Continuous Deployment (CI\/CD) pipelines. Its lightweight design and efficient performance make it an attractive choice for organizations looking to streamline their development operations.<\/p>\n<h3>Gitea in DevOps<\/h3>\n<p>In a DevOps environment, Gitea can serve as the central hub for codebase management. It can integrate with various DevOps tools, enabling seamless collaboration between development and operations teams. For instance, Gitea can work with Jenkins, a popular open-source automation server, to automate parts of the development process, such as building, testing, and deploying applications.<\/p>\n<h3>Gitea in CI\/CD Pipelines<\/h3>\n<p>Gitea&#8217;s support for webhooks is particularly useful in CI\/CD pipelines. Webhooks allow Gitea to notify other services when specific events occur, such as when a developer pushes a commit. This feature can trigger automated testing or deployment tasks, enhancing the efficiency of the CI\/CD pipeline.<\/p>\n<pre><code class=\"language-bash line-numbers\"># Example of setting up a webhook in Gitea\n\n# Navigate to your repository in Gitea\n# Click on 'Settings' -&gt; 'Webhooks'\n# Click on 'Add Webhook' -&gt; 'Gitea'\n# Fill in the 'Target URL' with your Jenkins server URL\n# Click on 'Add Webhook'\n<\/code><\/pre>\n<p>In this code block, we demonstrate how to set up a webhook in Gitea to notify a Jenkins server when changes are pushed to the repository. The comments guide you through the process, which involves navigating to the repository settings in Gitea, adding a new webhook, and specifying the target URL of the Jenkins server.<\/p>\n<h3>Setting Up a Gitea Server<\/h3>\n<p>Setting up your own Gitea server can provide even greater control over your Git repositories. You can customize the server&#8217;s configuration to suit your needs, including adjusting the server&#8217;s port, enabling HTTPS, and more.<\/p>\n<h3>Further Resources for Gitea Proficiency<\/h3>\n<p>To deepen your understanding of Gitea and its capabilities, consider exploring the following resources:<\/p>\n<ol>\n<li><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/docs.gitea.io\/en-us\/\" target=\"_blank\" rel=\"noopener\">Gitea&#8217;s Official Documentation<\/a>: A comprehensive guide to Gitea, including installation instructions, usage guides, and more.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/github.com\/go-gitea\/gitea\" target=\"_blank\" rel=\"noopener\">Gitea&#8217;s GitHub Page<\/a>: The official GitHub repository for Gitea, where you can find the source code, contribute to the project, and report issues.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/gitea.com\/gitea\/awesome-gitea\" target=\"_blank\" rel=\"noopener\">Awesome Gitea<\/a>: A curated list of resources related to Gitea, including plugins, themes, and tutorials.<\/p>\n<\/li>\n<\/ol>\n<p>By leveraging these resources, you can expand your knowledge of Gitea and make the most of this powerful self-hosted Git service.<\/p>\n<h2>Wrap Up: Gitea Linux Installation<\/h2>\n<p>In this comprehensive guide, we&#8217;ve explored how to install Gitea, a lightweight and efficient self-hosted Git service, on Linux.<\/p>\n<p>We began with the basics, walking through a step-by-step guide on how to install Gitea on Linux using package managers like APT and YUM. We then delved into more advanced topics, such as installing Gitea from source, installing specific versions of Gitea, and verifying the installed version.<\/p>\n<p>Along the way, we tackled common issues you might encounter when installing Gitea, such as &#8216;Permission Denied&#8217; errors and the Gitea service not starting. We provided solutions and tips for a smooth installation, ensuring you can overcome any challenges that come your way.<\/p>\n<p>We also took a look at alternative approaches to setting up a Git service on Linux, comparing Gitea with other popular Git services like GitLab and GitHub. Here&#8217;s a quick comparison of these services:<\/p>\n<table>\n<thead>\n<tr>\n<th>Service<\/th>\n<th>Self-hosted<\/th>\n<th>Features<\/th>\n<th>Ease of Use<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Gitea<\/td>\n<td>Yes<\/td>\n<td>Lightweight, efficient, easy to install<\/td>\n<td>High<\/td>\n<\/tr>\n<tr>\n<td>GitLab<\/td>\n<td>Yes<\/td>\n<td>Comprehensive DevOps platform<\/td>\n<td>Moderate<\/td>\n<\/tr>\n<tr>\n<td>GitHub<\/td>\n<td>No<\/td>\n<td>Largest open source community, cloud-based service<\/td>\n<td>High<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Whether you&#8217;re just starting out with Gitea or you&#8217;re looking to level up your skills, we hope this guide has given you a deeper understanding of Gitea and its capabilities.<\/p>\n<p>With its balance of lightweight design, efficiency, and ease of installation, Gitea is a powerful tool for managing your Git repositories on Linux. Happy coding!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>We utilize self-hosted Git repository solutions commonly while developing software for Linux servers at IOFLOOD. From our experience, Gitea&#8217;s user-friendly Git workflows and collaboration tools makes it an ideal platform for managing code repositories and projects. Todays article has been filled with tips and tricks too empower our customers and fellow developers with the knowledge [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":21067,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[],"class_list":["post-7665","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","cat-3-id","has_thumb"],"_links":{"self":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/7665","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/comments?post=7665"}],"version-history":[{"count":12,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/7665\/revisions"}],"predecessor-version":[{"id":21144,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/7665\/revisions\/21144"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media\/21067"}],"wp:attachment":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media?parent=7665"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/categories?post=7665"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/tags?post=7665"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}