{"id":13860,"date":"2024-05-28T20:12:29","date_gmt":"2024-05-28T17:12:29","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=13860"},"modified":"2024-06-10T08:22:49","modified_gmt":"2024-06-10T05:22:49","slug":"guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/","title":{"rendered":"Guide to Installing Ruby On Rails on Ubuntu 24.04 Noble Numbat"},"content":{"rendered":"\n

Ruby on Rails, often simply referred to as Rails, is a powerful web application framework written in Ruby. It is designed to make programming web applications easier by making assumptions about what every developer needs to get started. If you’re looking to harness the power of Rails on your Ubuntu<\/a> 24.04 LTS system, you’re in the right place. This guide will walk you through the step-by-step process of installing Ruby<\/a> on Rails on Ubuntu 24.04 LTS.<\/p>\n\n\n\n

Prerequisites<\/h3>\n\n\n\n

Before you begin, make sure you have:<\/p>\n\n\n\n

    \n
  1. A system running Ubuntu 24.04 LTS.<\/li>\n\n\n\n
  2. Sudo privileges.<\/li>\n<\/ol>\n\n\n\n

    Step 1: Update Your System<\/h3>\n\n\n\n

    First, ensure your system is up-to-date. Open a terminal and run the following commands:<\/p>\n\n\n\n

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

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

    Ruby is the programming language behind Rails. We\u2019ll use rbenv<\/code> to manage Ruby versions.<\/p>\n\n\n\n

      \n
    1. Install dependencies<\/strong>:<\/li>\n<\/ol>\n\n\n\n
      $ sudo apt install -y git curl libssl-dev libreadline-dev zlib1g-dev<\/code><\/pre>\n\n\n\n
        \n
      1. Install rbenv and ruby-build<\/strong>:<\/li>\n<\/ol>\n\n\n\n
        $ curl -fsSL https:\/\/github.com\/rbenv\/rbenv-installer\/raw\/main\/bin\/rbenv-installer | bash<\/code><\/pre>\n\n\n\n
          \n
        1. Add rbenv to your path<\/strong>:<\/li>\n<\/ol>\n\n\n\n
          $ echo 'export PATH="$HOME\/.rbenv\/bin:$PATH"' >> ~\/.bashrc\n$ echo 'eval "$(rbenv init -)"' >> ~\/.bashrc\n$ source ~\/.bashrc<\/code><\/pre>\n\n\n\n
            \n
          1. Install Ruby using rbenv<\/strong>:<\/li>\n<\/ol>\n\n\n\n
            $ rbenv install 3.2.2 # Check for the latest stable version at https:\/\/www.ruby-lang.org\/en\/downloads\/\n$ rbenv global 3.2.2<\/code><\/pre>\n\n\n\n
              \n
            1. Verify the Ruby installation<\/strong>:<\/li>\n<\/ol>\n\n\n\n
              $ ruby -v<\/code><\/pre>\n\n\n\n

              Step 3: Install Node.js and Yarn<\/h3>\n\n\n\n

              Rails requires a JavaScript runtime. We will use Node.js and Yarn:<\/p>\n\n\n\n

                \n
              1. Install Node.js<\/strong>:<\/li>\n<\/ol>\n\n\n\n
                $ sudo apt install -y nodejs<\/code><\/pre>\n\n\n\n
                  \n
                1. Install Yarn<\/strong>:<\/li>\n<\/ol>\n\n\n\n
                  $ curl -sL https:\/\/dl.yarnpkg.com\/debian\/pubkey.gpg | sudo apt-key add -\n$ echo "deb https:\/\/dl.yarnpkg.com\/debian\/ stable main" | sudo tee \/etc\/apt\/sources.list.d\/yarn.list\n$ sudo apt update && sudo apt install -y yarn<\/code><\/pre>\n\n\n\n

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

                  With Ruby installed, you can now install Rails:<\/p>\n\n\n\n

                  $ gem install rails -v 7.0.4 # Check for the latest stable version at https:\/\/rubyonrails.org\/\n$ rbenv rehash<\/code><\/pre>\n\n\n\n

                  Step 5: Verify the Rails Installation<\/h3>\n\n\n\n

                  Verify that Rails is installed correctly by checking the version:<\/p>\n\n\n\n

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

                  Step 6: Install and Configure PostgreSQL (Optional)<\/h3>\n\n\n\n

                  While Rails can work with SQLite, using PostgreSQL is recommended for production applications:<\/p>\n\n\n\n

                    \n
                  1. Install PostgreSQL<\/strong>:<\/li>\n<\/ol>\n\n\n\n
                    $ sudo apt install -y postgresql postgresql-contrib libpq-dev<\/code><\/pre>\n\n\n\n
                      \n
                    1. Start and enable PostgreSQL service<\/strong>:<\/li>\n<\/ol>\n\n\n\n
                      $ sudo systemctl start postgresql\n$ sudo systemctl enable postgresql<\/code><\/pre>\n\n\n\n
                        \n
                      1. Create a new PostgreSQL user<\/strong>:<\/li>\n<\/ol>\n\n\n\n
                        $ sudo -i -u postgres\n> createuser --interactive\n# Follow the prompts to create a new user\n> exit<\/code><\/pre>\n\n\n\n
                          \n
                        1. Create a new PostgreSQL database<\/strong>:<\/li>\n<\/ol>\n\n\n\n
                          $ sudo -i -u postgres\n> createdb your_database_name\n> exit<\/code><\/pre>\n\n\n\n
                            \n
                          1. Configure Rails to use PostgreSQL<\/strong>:<\/li>\n<\/ol>\n\n\n\n

                            When creating a new Rails application, specify PostgreSQL as the database:<\/p>\n\n\n\n

                            $ coderails new myapp -d postgresql\n$ cd myapp<\/code><\/pre>\n\n\n\n

                            Update the config\/database.yml<\/code> file with your PostgreSQL database details.<\/p>\n\n\n\n

                            Step 7: Create and Migrate the Database<\/h3>\n\n\n\n

                            Run the following commands to set up the database:<\/p>\n\n\n\n

                            $ coderails db:create\n$ rails db:migrate<\/code><\/pre>\n\n\n\n

                            Conclusion<\/h3>\n\n\n\n

                            Congratulations! You have successfully installed Ruby on Rails on your Ubuntu 24.04 LTS system. You are now ready to start developing powerful web applications with Rails. For more information on using Rails, check out the official documentation<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"

                            Ruby on Rails, often simply referred to as Rails, is a powerful web application framework written in Ruby. It is designed to make programming web applications easier by making assumptions…<\/p>\n","protected":false},"author":1,"featured_media":13920,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,23,9,27,28,16,18],"tags":[350,354,433,981,982,544,545,591,598],"yoast_head":"\nHow to Install Ruby On Rails on Ubuntu 24.04 Noble Numbat<\/title>\n<meta name=\"description\" content=\"This guide will walk you through the step-by-step process of installing Ruby on Rails on Ubuntu 24.04 LTS Linux Systems\" \/>\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\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/\" \/>\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 Ubuntu 24.04 Noble Numbat\" \/>\n<meta property=\"og:description\" content=\"This guide will walk you through the step-by-step process of installing Ruby on Rails on Ubuntu 24.04 LTS Linux Systems\" \/>\n<meta property=\"og:url\" content=\"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/\" \/>\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-05-28T17:12:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-10T05:22:49+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-Ruby-On-Rails-on-Ubuntu-24.04.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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/\"},\"author\":{\"name\":\"Michael Bright\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\"},\"headline\":\"Guide to Installing Ruby On Rails on Ubuntu 24.04 Noble Numbat\",\"datePublished\":\"2024-05-28T17:12:29+00:00\",\"dateModified\":\"2024-06-10T05:22:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/\"},\"wordCount\":316,\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-Ruby-On-Rails-on-Ubuntu-24.04.jpg\",\"keywords\":[\"Libraries\",\"Linux\",\"Optimization\",\"Rails\",\"Ruby\",\"Software development\",\"Software Engineering\",\"Tools\",\"Ubuntu\"],\"articleSection\":[\"Articles\",\"Guides\",\"How To\",\"Programming\",\"Software\",\"Technology\",\"Tools\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/\",\"url\":\"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/\",\"name\":\"How to Install Ruby On Rails on Ubuntu 24.04 Noble Numbat\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-Ruby-On-Rails-on-Ubuntu-24.04.jpg\",\"datePublished\":\"2024-05-28T17:12:29+00:00\",\"dateModified\":\"2024-06-10T05:22:49+00:00\",\"description\":\"This guide will walk you through the step-by-step process of installing Ruby on Rails on Ubuntu 24.04 LTS Linux Systems\",\"breadcrumb\":{\"@id\":\"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/#primaryimage\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-Ruby-On-Rails-on-Ubuntu-24.04.jpg\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-Ruby-On-Rails-on-Ubuntu-24.04.jpg\",\"width\":1280,\"height\":680,\"caption\":\"Install Ruby On Rails on Ubuntu 24.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/local.brightwhiz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Guide to Installing Ruby On Rails on Ubuntu 24.04 Noble Numbat\"}]},{\"@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 Ubuntu 24.04 Noble Numbat","description":"This guide will walk you through the step-by-step process of installing Ruby on Rails on Ubuntu 24.04 LTS Linux Systems","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\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Ruby On Rails on Ubuntu 24.04 Noble Numbat","og_description":"This guide will walk you through the step-by-step process of installing Ruby on Rails on Ubuntu 24.04 LTS Linux Systems","og_url":"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/","og_site_name":"Brightwhiz.com","article_publisher":"https:\/\/www.facebook.com\/brightwhiz\/","article_published_time":"2024-05-28T17:12:29+00:00","article_modified_time":"2024-06-10T05:22:49+00:00","og_image":[{"width":1280,"height":680,"url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-Ruby-On-Rails-on-Ubuntu-24.04.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":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/#article","isPartOf":{"@id":"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/"},"author":{"name":"Michael Bright","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32"},"headline":"Guide to Installing Ruby On Rails on Ubuntu 24.04 Noble Numbat","datePublished":"2024-05-28T17:12:29+00:00","dateModified":"2024-06-10T05:22:49+00:00","mainEntityOfPage":{"@id":"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/"},"wordCount":316,"publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"image":{"@id":"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-Ruby-On-Rails-on-Ubuntu-24.04.jpg","keywords":["Libraries","Linux","Optimization","Rails","Ruby","Software development","Software Engineering","Tools","Ubuntu"],"articleSection":["Articles","Guides","How To","Programming","Software","Technology","Tools"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/","url":"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/","name":"How to Install Ruby On Rails on Ubuntu 24.04 Noble Numbat","isPartOf":{"@id":"http:\/\/local.brightwhiz\/#website"},"primaryImageOfPage":{"@id":"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/#primaryimage"},"image":{"@id":"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-Ruby-On-Rails-on-Ubuntu-24.04.jpg","datePublished":"2024-05-28T17:12:29+00:00","dateModified":"2024-06-10T05:22:49+00:00","description":"This guide will walk you through the step-by-step process of installing Ruby on Rails on Ubuntu 24.04 LTS Linux Systems","breadcrumb":{"@id":"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/#primaryimage","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-Ruby-On-Rails-on-Ubuntu-24.04.jpg","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-Ruby-On-Rails-on-Ubuntu-24.04.jpg","width":1280,"height":680,"caption":"Install Ruby On Rails on Ubuntu 24.04"},{"@type":"BreadcrumbList","@id":"http:\/\/local.brightwhiz\/guide-to-installing-ruby-on-rails-on-ubuntu-24-04-noble-numbat\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/local.brightwhiz\/"},{"@type":"ListItem","position":2,"name":"Guide to Installing Ruby On Rails on Ubuntu 24.04 Noble Numbat"}]},{"@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\/13860"}],"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=13860"}],"version-history":[{"count":4,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13860\/revisions"}],"predecessor-version":[{"id":13983,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13860\/revisions\/13983"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media\/13920"}],"wp:attachment":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media?parent=13860"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/categories?post=13860"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/tags?post=13860"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}