{"id":33069,"date":"2024-11-01T09:13:32","date_gmt":"2024-11-01T09:13:32","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=33069"},"modified":"2024-11-01T11:29:06","modified_gmt":"2024-11-01T11:29:06","slug":"spring-boot-backend-development-course-create-a-github-repository-and-push-code","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/33069\/","title":{"rendered":"Spring Boot Backend Development Course, Create a GitHub Repository and Push Code"},"content":{"rendered":"<p><body><\/p>\n<p>Spring Boot is a framework that helps to easily develop web applications based on Java. In this tutorial, we will explain in detail how to build a simple backend application using Spring Boot and save it on GitHub. After developing the application, we will guide you through the process of creating a GitHub repository and pushing the code.<\/p>\n<h2>Table of Contents<\/h2>\n<ul>\n<li>1. Introduction to Spring Boot<\/li>\n<li>2. Setting Up Development Environment<\/li>\n<li>3. Creating a Simple Spring Boot Application<\/li>\n<li>4. Creating a GitHub Repository<\/li>\n<li>5. Pushing Code<\/li>\n<li>6. Conclusion and Additional Resources<\/li>\n<\/ul>\n<h2>1. Introduction to Spring Boot<\/h2>\n<p>Spring Boot is a tool provided to build applications quickly and reliably based on the Spring Framework. Spring Boot simplifies configuration and helps developers run applications with minimal effort through auto-configuration.<\/p>\n<p>The main features of Spring Boot are as follows:<\/p>\n<ul>\n<li>Auto-configuration: Spring Boot automatically handles the basic configuration needed for the project.<\/li>\n<li>Starter dependencies: Starter dependencies are provided to easily add various features.<\/li>\n<li>Embedded web server: Servers like Tomcat and Jetty are embedded, allowing applications to run without separate installation.<\/li>\n<li>Monitoring and management in production: Spring Boot offers various features to monitor and manage applications in production.<\/li>\n<\/ul>\n<h2>2. Setting Up Development Environment<\/h2>\n<h3>Required Tools Installation<\/h3>\n<p>To configure a stable development environment, the following tools are required:<\/p>\n<ul>\n<li><strong>Java Development Kit (JDK):<\/strong> JDK is necessary to run Spring Boot. You need to install JDK version 8 or higher.<\/li>\n<li><strong>IntelliJ IDEA or Eclipse:<\/strong> These are IDEs for developing Spring Boot applications. IntelliJ IDEA is available in both free and paid versions, while Eclipse is a free IDE that can be used on all platforms.<\/li>\n<li><strong>Git:<\/strong> A tool for version control. You can use Git to track code changes and push changes to a remote repository.<\/li>\n<li><strong>GitHub account:<\/strong> A GitHub account is needed to create a GitHub repository for code storage. You can sign up <a href=\"https:\/\/github.com\/join\">here<\/a>.<\/li>\n<\/ul>\n<h3>Installation Procedure for Development Environment<\/h3>\n<p>The methods for installing each tool are as follows:<\/p>\n<h4>1. Install JDK<\/h4>\n<p>The JDK can be downloaded from the Oracle website. Choose the version suitable for your operating system and install it.<\/p>\n<h4>2. Install IDE<\/h4>\n<p>IntelliJ IDEA can be downloaded from JetBrains&#8217; official website, and Eclipse can be downloaded from the Eclipse website. After installing the IDE, set the JDK path in the IDE.<\/p>\n<h4>3. Install Git<\/h4>\n<p>Git can be downloaded and installed from the <a href=\"https:\/\/git-scm.com\/downloads\">official website<\/a>. After installation, run the command <code>git --version<\/code> in the Command Line or Terminal to verify that the installation is complete.<\/p>\n<h2>3. Creating a Simple Spring Boot Application<\/h2>\n<p>Now, let&#8217;s actually create a Spring Boot application. You can create the application through the following steps.<\/p>\n<h3>Step 1: Initialize Spring<\/h3>\n<p>To initialize a Spring Boot project, use <a href=\"https:\/\/start.spring.io\/\">Spring Initializr<\/a>.<\/p>\n<ul>\n<li>Project: Choose (&#8216;Maven Project&#8217; or &#8216;Gradle Project&#8217;)<\/li>\n<li>Language: Select &#8216;Java&#8217;.<\/li>\n<li>Spring Boot: Choose the latest Spring Boot version.<\/li>\n<li>Group: Enter, for example, <code>com.example<\/code>.<\/li>\n<li>Artifact: Enter the desired project name. For example, set it as <code>my-spring-boot-app<\/code>.<\/li>\n<li>Dependencies: Select <code>Spring Web<\/code>. You can add other dependencies as needed.<\/li>\n<\/ul>\n<p>After finishing the setup, click the <code>Generate<\/code> button to download the project as a ZIP file.<\/p>\n<h3>Step 2: Import Project in IDE<\/h3>\n<p>Import the downloaded ZIP file into the IDE. To do this, open the IDE and select <code>File -&gt; Open<\/code> to open the ZIP file, or you can extract the ZIP file and open the folder.<\/p>\n<h3>Step 3: Write Basic Code<\/h3>\n<p>Once the project structure is set up, open the <code>src\/main\/java\/com\/example\/myspringbootapp\/MySpringBootApp.java<\/code> file and update it with the following code:<\/p>\n<pre><code>package com.example.myspringbootapp;\n\nimport org.springframework.boot.SpringApplication;\nimport org.springframework.boot.autoconfigure.SpringBootApplication;\n\n@SpringBootApplication\npublic class MySpringBootApp {\n\n    public static void main(String[] args) {\n        SpringApplication.run(MySpringBootApp.class, args);\n    }\n}<\/code><\/pre>\n<p>This is the starting point of a simple Spring Boot application. Now let&#8217;s create a simple REST API.<\/p>\n<h3>Step 4: Write REST Controller<\/h3>\n<p>First, create a new class file <code>GreetingController.java<\/code>. Write it as follows:<\/p>\n<pre><code>package com.example.myspringbootapp;\n\nimport org.springframework.web.bind.annotation.GetMapping;\nimport org.springframework.web.bind.annotation.RequestParam;\nimport org.springframework.web.bind.annotation.RestController;\n\n@RestController\npublic class GreetingController {\n    \n    @GetMapping(\"\/greeting\")\n    public String greeting(@RequestParam(value = \"name\", defaultValue = \"World\") String name) {\n        return String.format(\"Hello, %s!\", name);\n    }\n}<\/code><\/pre>\n<p>The above code creates a \/greeting API endpoint that receives a name as a query parameter and returns a greeting message.<\/p>\n<h3>Step 5: Run the Application<\/h3>\n<p>You can run the main class (<code>MySpringBootApp<\/code>) in the IDE or execute the following command in the terminal to start the application:<\/p>\n<pre><code>.\/mvnw spring-boot:run<\/code><\/pre>\n<p>You can call the API by entering <code>http:\/\/localhost:8080\/greeting<\/code> in the browser. If you enter <code>http:\/\/localhost:8080\/greeting?name=Alice<\/code>, you will receive the message &#8220;Hello, Alice!&#8221;.<\/p>\n<h2>4. Creating a GitHub Repository<\/h2>\n<p>Now it\u2019s time to save the Spring Boot application on GitHub. To upload the code we have created, we first need to create a GitHub repository.<\/p>\n<h3>Step 1: Log in to GitHub<\/h3>\n<p>First, log in to GitHub. If you don\u2019t have an account, you need to sign up.<\/p>\n<h3>Step 2: Create a New Repository<\/h3>\n<p>After logging in, click the &#8220;+&#8221; button at the top right and select &#8220;New repository&#8221;. Enter the repository name and description, choose either <code>Public<\/code> or <code>Private<\/code>, and then click the <code>Create repository<\/code> button.<\/p>\n<h2>5. Pushing Code<\/h2>\n<p>Now let\u2019s go through the process of pushing the code you have written locally to the GitHub repository.<\/p>\n<h3>Step 1: Initialize Git<\/h3>\n<p>Navigate to the project folder and initialize Git. Run the following command in the terminal:<\/p>\n<pre><code>git init<\/code><\/pre>\n<h3>Step 2: Add GitHub Remote Repository<\/h3>\n<p>Next, add the address of the repository you created on GitHub. You can copy the repository&#8217;s URL from the top URL bar on GitHub:<\/p>\n<pre><code>git remote add origin https:\/\/github.com\/USERNAME\/REPOSITORY_NAME.git<\/code><\/pre>\n<p>Here, <code>USERNAME<\/code> is your GitHub username, and <code>REPOSITORY_NAME<\/code> is the repository name you created.<\/p>\n<h3>Step 3: Add and Commit Changes<\/h3>\n<p>To commit changes, run the following commands:<\/p>\n<pre><code>git add .\ngit commit -m \"Initial commit\"<\/code><\/pre>\n<h3>Step 4: Push Code<\/h3>\n<p>Finally, push the local changes to GitHub:<\/p>\n<pre><code>git push -u origin master<\/code><\/pre>\n<h2>6. Conclusion and Additional Resources<\/h2>\n<p>Congratulations! You have now learned how to create a simple Spring Boot application and how to push the code to a GitHub repository. This process is an important step in laying the foundation for backend development.<\/p>\n<p>You can find additional materials and references through the following links:<\/p>\n<ul>\n<li><a href=\"https:\/\/spring.io\/projects\/spring-boot\">Official Spring Boot Documentation<\/a><\/li>\n<li><a href=\"https:\/\/docs.github.com\/en\/get-started\">Getting Started with GitHub<\/a><\/li>\n<li><a href=\"https:\/\/www.baeldung.com\/spring-boot\">Baeldung&#8217;s Spring Boot Tutorials<\/a><\/li>\n<\/ul>\n<p>I hope this tutorial was helpful. For those wishing to advance further, challenge yourselves to work on various projects utilizing Spring Boot and Git!<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Spring Boot is a framework that helps to easily develop web applications based on Java. In this tutorial, we will explain in detail how to build a simple backend application using Spring Boot and save it on GitHub. After developing the application, we will guide you through the process of creating a GitHub repository and &hellip; <a href=\"https:\/\/atmokpo.com\/w\/33069\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Spring Boot Backend Development Course, Create a GitHub Repository and Push Code&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[131],"tags":[],"class_list":["post-33069","post","type-post","status-publish","format-standard","hentry","category-spring-boot-backend-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Spring Boot Backend Development Course, Create a GitHub Repository and Push Code - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/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:\/\/atmokpo.com\/w\/33069\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Spring Boot Backend Development Course, Create a GitHub Repository and Push Code - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Spring Boot is a framework that helps to easily develop web applications based on Java. In this tutorial, we will explain in detail how to build a simple backend application using Spring Boot and save it on GitHub. After developing the application, we will guide you through the process of creating a GitHub repository and &hellip; \ub354 \ubcf4\uae30 &quot;Spring Boot Backend Development Course, Create a GitHub Repository and Push Code&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/33069\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:13:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:29:06+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"5\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/33069\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33069\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Spring Boot Backend Development Course, Create a GitHub Repository and Push Code\",\"datePublished\":\"2024-11-01T09:13:32+00:00\",\"dateModified\":\"2024-11-01T11:29:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33069\/\"},\"wordCount\":935,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Spring Boot backend development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/33069\/\",\"url\":\"https:\/\/atmokpo.com\/w\/33069\/\",\"name\":\"Spring Boot Backend Development Course, Create a GitHub Repository and Push Code - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:13:32+00:00\",\"dateModified\":\"2024-11-01T11:29:06+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33069\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/33069\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/33069\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Spring Boot Backend Development Course, Create a GitHub Repository and Push Code\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Spring Boot Backend Development Course, Create a GitHub Repository and Push Code - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","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:\/\/atmokpo.com\/w\/33069\/","og_locale":"ko_KR","og_type":"article","og_title":"Spring Boot Backend Development Course, Create a GitHub Repository and Push Code - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Spring Boot is a framework that helps to easily develop web applications based on Java. In this tutorial, we will explain in detail how to build a simple backend application using Spring Boot and save it on GitHub. After developing the application, we will guide you through the process of creating a GitHub repository and &hellip; \ub354 \ubcf4\uae30 \"Spring Boot Backend Development Course, Create a GitHub Repository and Push Code\"","og_url":"https:\/\/atmokpo.com\/w\/33069\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:13:32+00:00","article_modified_time":"2024-11-01T11:29:06+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"5\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/33069\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/33069\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Spring Boot Backend Development Course, Create a GitHub Repository and Push Code","datePublished":"2024-11-01T09:13:32+00:00","dateModified":"2024-11-01T11:29:06+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/33069\/"},"wordCount":935,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Spring Boot backend development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/33069\/","url":"https:\/\/atmokpo.com\/w\/33069\/","name":"Spring Boot Backend Development Course, Create a GitHub Repository and Push Code - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:13:32+00:00","dateModified":"2024-11-01T11:29:06+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/33069\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/33069\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/33069\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Spring Boot Backend Development Course, Create a GitHub Repository and Push Code"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33069","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=33069"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33069\/revisions"}],"predecessor-version":[{"id":33070,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33069\/revisions\/33070"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=33069"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=33069"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=33069"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}