{"id":14010,"date":"2024-06-17T11:01:02","date_gmt":"2024-06-17T08:01:02","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=14010"},"modified":"2024-06-17T11:01:03","modified_gmt":"2024-06-17T08:01:03","slug":"how-to-install-ruby-on-rails-on-debian-12-linux-systems","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/","title":{"rendered":"How to Install Ruby On Rails on Debian 12 Linux Systems"},"content":{"rendered":"\n

Ruby on Rails, often simply called Rails, is a popular web application framework that provides a robust environment for building dynamic web applications. If you’re using Debian<\/a> 12 and want to set up Ruby on Rails for your development projects, this guide will walk you through the installation process step-by-step.<\/p>\n\n\n\n

Step 1: Update System Packages<\/h4>\n\n\n\n

Before installing any new software, it’s crucial to ensure that your system packages are up to date. Open a terminal and execute the following commands to update the package repository and installed packages:<\/p>\n\n\n\n

$ sudo apt update\n$ sudo apt upgrade<\/code><\/pre>\n\n\n\n

This will update the package lists and upgrade all installed packages to their latest versions.<\/p>\n\n\n\n

Step 2: Install Ruby<\/h4>\n\n\n\n

Debian 12 ships with Ruby, but it’s recommended to install the Ruby version manager (rbenv<\/code>) to manage your Ruby installations. rbenv<\/code> allows you to install and switch between multiple Ruby versions effortlessly.<\/p>\n\n\n\n

Start by installing the necessary dependencies for rbenv<\/code> and ruby-build<\/code> (a plugin for rbenv<\/code> that simplifies the installation of Ruby versions):<\/p>\n\n\n\n

$ sudo apt install rbenv ruby-build<\/code><\/pre>\n\n\n\n

After installation, add rbenv<\/code> to your shell session by appending the following lines to your ~\/.bashrc<\/code> or ~\/.zshrc<\/code> file:<\/p>\n\n\n\n

$ export PATH="$HOME\/.rbenv\/bin:$PATH"\n$ eval "$(rbenv init -)"<\/code><\/pre>\n\n\n\n

Then, reload your shell configuration:<\/p>\n\n\n\n

$ source ~\/.bashrc   # or ~\/.zshrc if you use Zsh<\/code><\/pre>\n\n\n\n

Now, you can install a specific version of Ruby. To install the latest stable version, use:<\/p>\n\n\n\n

$ rbenv install 3.1.0   # Replace with the desired Ruby version (e.g., 3.1.0)<\/code><\/pre>\n\n\n\n

Set this version as the global default:<\/p>\n\n\n\n

$ rbenv global 3.1.0<\/code><\/pre>\n\n\n\n

Verify that Ruby is installed correctly:<\/p>\n\n\n\n

$ ruby -v<\/code><\/pre>\n\n\n\n

Step 3: Install Node.js<\/h4>\n\n\n\n

Rails requires a JavaScript runtime for asset compilation. Install Node.js and npm (Node Package Manager) using the following command:<\/p>\n\n\n\n

$ sudo apt install nodejs npm<\/code><\/pre>\n\n\n\n

Verify the installation:<\/p>\n\n\n\n

$ node -v\n$ npm -v<\/code><\/pre>\n\n\n\n

Step 4: Install Rails<\/h4>\n\n\n\n

With Ruby and Node.js installed, you can now install Rails using the gem<\/code> package manager:<\/p>\n\n\n\n

$ gem install rails<\/code><\/pre>\n\n\n\n

This command installs the latest stable version of Rails.<\/p>\n\n\n\n

Step 5: Verify Rails Installation<\/h4>\n\n\n\n

After installation, verify that Rails has been installed correctly by checking its version:<\/p>\n\n\n\n

$ rails -v<\/code><\/pre>\n\n\n\n

You should see the Rails version number printed to the terminal.<\/p>\n\n\n\n

Step 6: Set Up a New Rails Application<\/h4>\n\n\n\n

To create a new Rails application, navigate to your desired directory and use the following command:<\/p>\n\n\n\n

$ rails new myapp<\/code><\/pre>\n\n\n\n

Replace myapp<\/code> with your preferred application name. This command creates a new Rails application with default settings.<\/p>\n\n\n\n

Step 7: Start the Rails Server<\/h4>\n\n\n\n

Navigate into your newly created Rails application directory:<\/p>\n\n\n\n

$ cd myapp<\/code><\/pre>\n\n\n\n

Start the Rails server to see your application in action:<\/p>\n\n\n\n

$ rails server<\/code><\/pre>\n\n\n\n

By default, the Rails server will start on http:\/\/localhost:3000<\/code>. Open your web browser and visit this URL to see the default Rails welcome page.<\/p>\n\n\n\n

Conclusion<\/h4>\n\n\n\n

You’ve successfully installed Ruby on Rails on your Debian 12 system and created a new Rails application. From here, you can explore the vast capabilities of Rails and start developing your web projects with ease.<\/p>\n\n\n\n

If you encounter any issues or need further customization, refer to the Ruby on Rails Guides<\/a> for comprehensive documentation and tutorials.<\/p>\n","protected":false},"excerpt":{"rendered":"

Ruby on Rails, often simply called Rails, is a popular web application framework that provides a robust environment for building dynamic web applications. If you’re using Debian 12 and want…<\/p>\n","protected":false},"author":1,"featured_media":14289,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,23,9,25,27,28,16,18],"tags":[183,193,354,424,433,982,531,573,591],"yoast_head":"\nHow to Install Ruby On Rails on Debian 12 Linux Systems<\/title>\n<meta name=\"description\" content=\"Using Debian 12 and want to set up Ruby on Rails for your development projects? This guide will walk you through the installation process\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Ruby On Rails on Debian 12 Linux Systems\" \/>\n<meta property=\"og:description\" content=\"Using Debian 12 and want to set up Ruby on Rails for your development projects? This guide will walk you through the installation process\" \/>\n<meta property=\"og:url\" content=\"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/\" \/>\n<meta property=\"og:site_name\" content=\"Brightwhiz.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/brightwhiz\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-06-17T08:01:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-17T08:01:03+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/06\/Install-Ruby-On-Rails-on-Debian-12.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Michael Bright\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:site\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Michael Bright\" \/>\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\":\"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/\"},\"author\":{\"name\":\"Michael Bright\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\"},\"headline\":\"How to Install Ruby On Rails on Debian 12 Linux Systems\",\"datePublished\":\"2024-06-17T08:01:02+00:00\",\"dateModified\":\"2024-06-17T08:01:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/\"},\"wordCount\":438,\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/06\/Install-Ruby-On-Rails-on-Debian-12.jpg\",\"keywords\":[\"Debian\",\"DevOps\",\"Linux\",\"Open Source\",\"Optimization\",\"Ruby\",\"Server\",\"Systems Administration\",\"Tools\"],\"articleSection\":[\"Articles\",\"Guides\",\"How To\",\"Libraries\",\"Programming\",\"Software\",\"Technology\",\"Tools\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/\",\"url\":\"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/\",\"name\":\"How to Install Ruby On Rails on Debian 12 Linux Systems\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/06\/Install-Ruby-On-Rails-on-Debian-12.jpg\",\"datePublished\":\"2024-06-17T08:01:02+00:00\",\"dateModified\":\"2024-06-17T08:01:03+00:00\",\"description\":\"Using Debian 12 and want to set up Ruby on Rails for your development projects? This guide will walk you through the installation process\",\"breadcrumb\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/#primaryimage\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/06\/Install-Ruby-On-Rails-on-Debian-12.jpg\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/06\/Install-Ruby-On-Rails-on-Debian-12.jpg\",\"width\":1280,\"height\":680,\"caption\":\"Install Ruby On Rails on Debian 12\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/local.brightwhiz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Ruby On Rails on Debian 12 Linux Systems\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/local.brightwhiz\/#website\",\"url\":\"http:\/\/local.brightwhiz\/\",\"name\":\"Brightwhiz.com\",\"description\":\"Best Tech guides, Tutorials, and News\",\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/local.brightwhiz\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/local.brightwhiz\/#organization\",\"name\":\"Brightwhiz\",\"url\":\"http:\/\/local.brightwhiz\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"width\":706,\"height\":135,\"caption\":\"Brightwhiz\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/brightwhiz\/\",\"https:\/\/x.com\/brightwhizmag\",\"https:\/\/instagram.com\/bright_whiz\/\",\"https:\/\/www.pinterest.com\/sobbayi\/\",\"https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\",\"name\":\"Michael Bright\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"contentUrl\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"caption\":\"Michael Bright\"},\"sameAs\":[\"https:\/\/sobbayi.com\"],\"url\":\"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Ruby On Rails on Debian 12 Linux Systems","description":"Using Debian 12 and want to set up Ruby on Rails for your development projects? This guide will walk you through the installation process","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":"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Ruby On Rails on Debian 12 Linux Systems","og_description":"Using Debian 12 and want to set up Ruby on Rails for your development projects? This guide will walk you through the installation process","og_url":"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/","og_site_name":"Brightwhiz.com","article_publisher":"https:\/\/www.facebook.com\/brightwhiz\/","article_published_time":"2024-06-17T08:01:02+00:00","article_modified_time":"2024-06-17T08:01:03+00:00","og_image":[{"width":1280,"height":680,"url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/06\/Install-Ruby-On-Rails-on-Debian-12.jpg","type":"image\/jpeg"}],"author":"Michael Bright","twitter_card":"summary_large_image","twitter_creator":"@brightwhizmag","twitter_site":"@brightwhizmag","twitter_misc":{"Written by":"Michael Bright","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/#article","isPartOf":{"@id":"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/"},"author":{"name":"Michael Bright","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32"},"headline":"How to Install Ruby On Rails on Debian 12 Linux Systems","datePublished":"2024-06-17T08:01:02+00:00","dateModified":"2024-06-17T08:01:03+00:00","mainEntityOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/"},"wordCount":438,"publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/06\/Install-Ruby-On-Rails-on-Debian-12.jpg","keywords":["Debian","DevOps","Linux","Open Source","Optimization","Ruby","Server","Systems Administration","Tools"],"articleSection":["Articles","Guides","How To","Libraries","Programming","Software","Technology","Tools"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/","url":"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/","name":"How to Install Ruby On Rails on Debian 12 Linux Systems","isPartOf":{"@id":"http:\/\/local.brightwhiz\/#website"},"primaryImageOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/#primaryimage"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/06\/Install-Ruby-On-Rails-on-Debian-12.jpg","datePublished":"2024-06-17T08:01:02+00:00","dateModified":"2024-06-17T08:01:03+00:00","description":"Using Debian 12 and want to set up Ruby on Rails for your development projects? This guide will walk you through the installation process","breadcrumb":{"@id":"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/#primaryimage","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/06\/Install-Ruby-On-Rails-on-Debian-12.jpg","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/06\/Install-Ruby-On-Rails-on-Debian-12.jpg","width":1280,"height":680,"caption":"Install Ruby On Rails on Debian 12"},{"@type":"BreadcrumbList","@id":"http:\/\/local.brightwhiz\/how-to-install-ruby-on-rails-on-debian-12-linux-systems\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/local.brightwhiz\/"},{"@type":"ListItem","position":2,"name":"How to Install Ruby On Rails on Debian 12 Linux Systems"}]},{"@type":"WebSite","@id":"http:\/\/local.brightwhiz\/#website","url":"http:\/\/local.brightwhiz\/","name":"Brightwhiz.com","description":"Best Tech guides, Tutorials, and News","publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/local.brightwhiz\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/local.brightwhiz\/#organization","name":"Brightwhiz","url":"http:\/\/local.brightwhiz\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","width":706,"height":135,"caption":"Brightwhiz"},"image":{"@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/brightwhiz\/","https:\/\/x.com\/brightwhizmag","https:\/\/instagram.com\/bright_whiz\/","https:\/\/www.pinterest.com\/sobbayi\/","https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ"]},{"@type":"Person","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32","name":"Michael Bright","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/","url":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","contentUrl":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","caption":"Michael Bright"},"sameAs":["https:\/\/sobbayi.com"],"url":"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/"}]}},"_links":{"self":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/14010"}],"collection":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/comments?post=14010"}],"version-history":[{"count":2,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/14010\/revisions"}],"predecessor-version":[{"id":14282,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/14010\/revisions\/14282"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media\/14289"}],"wp:attachment":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media?parent=14010"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/categories?post=14010"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/tags?post=14010"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}