{"id":32465,"date":"2024-11-01T09:09:10","date_gmt":"2024-11-01T09:09:10","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=32465"},"modified":"2024-11-01T11:55:12","modified_gmt":"2024-11-01T11:55:12","slug":"flutter-course-11-1-creating-and-configuring-projects","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/32465\/","title":{"rendered":"Flutter Course: 11.1 Creating and Configuring Projects"},"content":{"rendered":"<p>Hello! In this tutorial, we will explore in detail how to create and structure a project using Flutter. Flutter is a powerful framework developed by Google that allows you to build mobile, web, and desktop applications using a single codebase. We will now look at the process of creating and configuring a Flutter project step by step.<\/p>\n<h2>1. Installing Flutter<\/h2>\n<p>To use Flutter, you must first install the Flutter SDK. Follow the steps below to proceed with the installation:<\/p>\n<ul>\n<li><strong>Download the Flutter SDK:<\/strong> Visit the <a href=\"https:\/\/flutter.dev\/docs\/get-started\/install\">official Flutter website<\/a> to download the SDK suitable for your operating system.<\/li>\n<li><strong>Set environment variables:<\/strong> Add the path of the downloaded Flutter SDK to your system&#8217;s environment variables.<\/li>\n<li><strong>Install dependencies:<\/strong> Use the Flutter Doctor command to install necessary dependencies. Enter the following command in the command line:<\/li>\n<\/ul>\n<pre><code>flutter doctor<\/code><\/pre>\n<p>This command checks for any issues with your Flutter installation. If any required packages are missing, you will be prompted to install them.<\/p>\n<h2>2. Creating a New Flutter Project<\/h2>\n<p>Once the Flutter SDK installation is complete, let&#8217;s create a new project. To create a new Flutter application, enter the following command:<\/p>\n<pre><code>flutter create project_name<\/code><\/pre>\n<p>Here, <code>project_name<\/code> is the name of the project, which you can change to your preferred name. Once the project is created, the following directory structure will be generated:<\/p>\n<pre>\nproject_name\/\n  \u251c\u2500\u2500 android\/\n  \u251c\u2500\u2500 ios\/\n  \u251c\u2500\u2500 lib\/\n  \u251c\u2500\u2500 test\/\n  \u251c\u2500\u2500 web\/\n  \u251c\u2500\u2500 pubspec.yaml\n<\/pre>\n<p>The roles of each directory are as follows:<\/p>\n<ul>\n<li><strong>android\/:<\/strong> Contains configuration files and code for the Android platform.<\/li>\n<li><strong>ios\/:<\/strong> Contains configuration files and code for the iOS platform.<\/li>\n<li><strong>lib\/:<\/strong> The directory where the main code of the Flutter application (Dart files) is located.<\/li>\n<li><strong>test\/:<\/strong> Contains unit tests and integration test code.<\/li>\n<li><strong>web\/:<\/strong> Contains files for the web platform.<\/li>\n<li><strong>pubspec.yaml:<\/strong> A file that defines the project&#8217;s metadata, dependencies, and more.<\/li>\n<\/ul>\n<h2>3. Understanding the pubspec.yaml File<\/h2>\n<p>Let&#8217;s take a closer look at the key file of the Flutter project, <code>pubspec.yaml<\/code>. This file contains information about the project and defines dependency management and various settings.<\/p>\n<pre>\nname: project_name\ndescription: A new Flutter project.\npublish_to: 'none' # Remove this line if you wish to publish to pub.dev\nversion: 1.0.0+1\n\nenvironment:\n  sdk: \"&gt;=2.12.0 &lt;3.0.0\"\n\ndependencies:\n  flutter:\n    sdk: flutter\n\ndev_dependencies:\n  flutter_test:\n    sdk: flutter\n\nflutter:\n\n  uses-material-design: true\n<\/pre>\n<p><strong>Key Component Descriptions:<\/strong><\/p>\n<ul>\n<li><strong>name:<\/strong> The name of the project.<\/li>\n<li><strong>description:<\/strong> Description of the project.<\/li>\n<li><strong>publish_to:<\/strong> A setting indicating that this project will not be published to pub.dev.<\/li>\n<li><strong>version:<\/strong> The version of the project.<\/li>\n<li><strong>environment:<\/strong> The version range of the Dart SDK being used.<\/li>\n<li><strong>dependencies:<\/strong> The main packages utilized in the project.<\/li>\n<li><strong>dev_dependencies:<\/strong> Packages needed only during development.<\/li>\n<li><strong>flutter:<\/strong> Settings related to Flutter. For instance, if <code>uses-material-design<\/code> is true, it allows the use of Material Design icons.<\/li>\n<\/ul>\n<h2>4. Structuring the Project<\/h2>\n<p>Now let&#8217;s talk about how to structure the project. Generally, a Flutter application is organized in the following way:<\/p>\n<ul>\n<li><strong>lib\/<\/strong>: Contains the main application code.<\/li>\n<li><strong>screens\/<\/strong>: Contains files that define the application&#8217;s screens.<\/li>\n<li><strong>widgets\/<\/strong>: Contains reusable widgets.<\/li>\n<li><strong>models\/<\/strong>: Contains data model classes.<\/li>\n<li><strong>services\/<\/strong>: Contains service classes such as networking.<\/li>\n<\/ul>\n<p>Maintaining this structure ensures that the code is organized and easy to manage. For example, consider a project with the following file structure:<\/p>\n<pre>\nlib\/\n  \u251c\u2500\u2500 main.dart\n  \u251c\u2500\u2500 screens\/\n  \u2502   \u251c\u2500\u2500 home_screen.dart\n  \u2502   \u2514\u2500\u2500 settings_screen.dart\n  \u251c\u2500\u2500 widgets\/\n  \u2502   \u251c\u2500\u2500 custom_button.dart\n  \u2502   \u2514\u2500\u2500 header.dart\n  \u251c\u2500\u2500 models\/\n  \u2502   \u251c\u2500\u2500 user.dart\n  \u2502   \u2514\u2500\u2500 product.dart\n  \u2514\u2500\u2500 services\/\n      \u251c\u2500\u2500 api_service.dart\n      \u2514\u2500\u2500 auth_service.dart\n<\/pre>\n<h2>5. Creating a Basic Hello World Application<\/h2>\n<p>Now let&#8217;s create a basic Hello World application. Open the <code>lib\/main.dart<\/code> file and write the following:<\/p>\n<pre><code>import 'package:flutter\/material.dart';\n\nvoid main() {\n  runApp(MyApp());\n}\n\nclass MyApp extends StatelessWidget {\n  @override\n  Widget build(BuildContext context) {\n    return MaterialApp(\n      title: 'Hello World',\n      home: Scaffold(\n        appBar: AppBar(\n          title: Text('Hello World App'),\n        ),\n        body: Center(\n          child: Text('Hello, Flutter!'),\n        ),\n      ),\n    );\n  }\n}\n<\/code><\/pre>\n<p>This code creates a simple application based on Flutter. The <code>runApp<\/code> function launches the <code>MyApp<\/code> widget to start the application. The <code>Scaffold<\/code> provides the basic UI framework. The <code>AppBar<\/code> and <code>Center<\/code> widgets are used to position the text in the center.<\/p>\n<h2>6. Running the Application<\/h2>\n<p>Now that the project is ready, let&#8217;s run it. Enter the following command in the command line:<\/p>\n<pre><code>flutter run<\/code><\/pre>\n<p>Executing the above command will launch the application on the connected device or emulator. When the app is run, the phrase &#8220;Hello, Flutter!&#8221; will be displayed in the center.<\/p>\n<h2>7. Debugging and Building<\/h2>\n<p>Identifying and fixing errors or bugs during application development is an important process. Flutter provides powerful debugging tools.<\/p>\n<ul>\n<li><strong>Hot Reload:<\/strong> A feature that allows you to apply changes immediately without refreshing the app after code changes.<\/li>\n<li><strong>Debug Mode:<\/strong> Use the debugging tools provided by Flutter to easily check variable values, stack traces, breakpoints, and more.<\/li>\n<\/ul>\n<p>You can build the project using the following command:<\/p>\n<pre><code>flutter build apk<\/code><\/pre>\n<p>This command generates an APK file that can be run on Android. For iOS, use the appropriate command to perform the build in Xcode.<\/p>\n<h2>8. Conclusion<\/h2>\n<p>In this tutorial, we learned how to create and structure a Flutter project. Flutter is a powerful tool for quickly prototyping applications. By understanding and adjusting the project structure, you can efficiently proceed with application development. In the next tutorial, we will explore how to create richer UIs using various Flutter widgets.<\/p>\n<h2>References<\/h2>\n<ul>\n<li><a href=\"https:\/\/flutter.dev\/docs\">Official Flutter Documentation<\/a><\/li>\n<li><a href=\"https:\/\/dart.dev\/guides\">Official Dart Documentation<\/a><\/li>\n<li><a href=\"https:\/\/pub.dev\/\">Dart Package Registry<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Hello! In this tutorial, we will explore in detail how to create and structure a project using Flutter. Flutter is a powerful framework developed by Google that allows you to build mobile, web, and desktop applications using a single codebase. We will now look at the process of creating and configuring a Flutter project step &hellip; <a href=\"https:\/\/atmokpo.com\/w\/32465\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Flutter Course: 11.1 Creating and Configuring Projects&#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":[151],"tags":[],"class_list":["post-32465","post","type-post","status-publish","format-standard","hentry","category-flutter-course"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Flutter Course: 11.1 Creating and Configuring Projects - \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\/32465\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Flutter Course: 11.1 Creating and Configuring Projects - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Hello! In this tutorial, we will explore in detail how to create and structure a project using Flutter. Flutter is a powerful framework developed by Google that allows you to build mobile, web, and desktop applications using a single codebase. We will now look at the process of creating and configuring a Flutter project step &hellip; \ub354 \ubcf4\uae30 &quot;Flutter Course: 11.1 Creating and Configuring Projects&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/32465\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:09:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:55:12+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=\"4\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/32465\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32465\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Flutter Course: 11.1 Creating and Configuring Projects\",\"datePublished\":\"2024-11-01T09:09:10+00:00\",\"dateModified\":\"2024-11-01T11:55:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32465\/\"},\"wordCount\":737,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Flutter course\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/32465\/\",\"url\":\"https:\/\/atmokpo.com\/w\/32465\/\",\"name\":\"Flutter Course: 11.1 Creating and Configuring Projects - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:09:10+00:00\",\"dateModified\":\"2024-11-01T11:55:12+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32465\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/32465\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/32465\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Flutter Course: 11.1 Creating and Configuring Projects\"}]},{\"@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":"Flutter Course: 11.1 Creating and Configuring Projects - \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\/32465\/","og_locale":"ko_KR","og_type":"article","og_title":"Flutter Course: 11.1 Creating and Configuring Projects - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Hello! In this tutorial, we will explore in detail how to create and structure a project using Flutter. Flutter is a powerful framework developed by Google that allows you to build mobile, web, and desktop applications using a single codebase. We will now look at the process of creating and configuring a Flutter project step &hellip; \ub354 \ubcf4\uae30 \"Flutter Course: 11.1 Creating and Configuring Projects\"","og_url":"https:\/\/atmokpo.com\/w\/32465\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:09:10+00:00","article_modified_time":"2024-11-01T11:55:12+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":"4\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/32465\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/32465\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Flutter Course: 11.1 Creating and Configuring Projects","datePublished":"2024-11-01T09:09:10+00:00","dateModified":"2024-11-01T11:55:12+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/32465\/"},"wordCount":737,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Flutter course"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/32465\/","url":"https:\/\/atmokpo.com\/w\/32465\/","name":"Flutter Course: 11.1 Creating and Configuring Projects - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:09:10+00:00","dateModified":"2024-11-01T11:55:12+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/32465\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/32465\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/32465\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Flutter Course: 11.1 Creating and Configuring Projects"}]},{"@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\/32465","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=32465"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/32465\/revisions"}],"predecessor-version":[{"id":32466,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/32465\/revisions\/32466"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=32465"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=32465"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=32465"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}