{"id":2650,"date":"2019-01-16T16:48:27","date_gmt":"2019-01-16T21:48:27","guid":{"rendered":"https:\/\/easy-admin.ca\/?p=2650"},"modified":"2019-01-17T09:35:34","modified_gmt":"2019-01-17T14:35:34","slug":"install-orangescrum-on-centos-7","status":"publish","type":"post","link":"https:\/\/easy-admin.ca\/index.php\/2019\/01\/16\/install-orangescrum-on-centos-7\/","title":{"rendered":"Install OrangeScrum Centos 7"},"content":{"rendered":"\r\n<p>First you will need to install LAMP (Linux, Apache, Mysql, PHP) on a fresh Dedicated standalone server! (Do not install on a VPS)<\/p>\r\n<p>Here is a good online tutorial about deploying LAMP on CentOS<\/p>\r\n<p><iframe loading=\"lazy\" src=\"https:\/\/www.youtube.com\/embed\/d_vxPZNMb_k\" width=\"800\" height=\"415\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">\ufeff<\/span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">\ufeff<\/span><\/iframe><\/p>\r\n<h2>Disable SeLinux?<\/h2>\r\n<p>Edit the\u00a0<code>\/etc\/selinux\/config<\/code>\u00a0file to set the\u00a0\u00a0<code>SELINUX<\/code>\u00a0parameter to\u00a0\u00a0<code>disabled<\/code>, and then reboot the server.<\/p>\r\n<p>I have noticed after<strong> turning back &#8220;on&#8221; SeLinux after the full installation bellow<\/strong>, that the server is holding!<\/p>\r\n<p>Still a lot of testing to do but! Working \ud83d\ude09<\/p>\r\n\r\n\r\n\r\n<h2>Install Apache<\/h2>\r\n\r\n\r\n\r\n<p><strong># sudo yum install httpd<\/strong><\/p>\r\n\r\n\r\n\r\n<p>Once installed, you can start Apache<\/p>\r\n\r\n\r\n\r\n<p><strong># sudo systemctl start httpd.service<\/strong><\/p>\r\n\r\n\r\n\r\n<p>The last thing you will want to do is enable Apache to start on boot. Use the following command to do so:<\/p>\r\n\r\n\r\n\r\n<p><strong># sudo systemctl enable httpd.service<\/strong><\/p>\r\n\r\n\r\n\r\n<h2>How To Find your Server Public IP<\/h2>\r\n\r\n\r\n\r\n<p>If you do not know what your server&#8217;s public IP address is, there are a number of ways you can find it. Usually, this is the address you use to connect to your server through SSH.<\/p>\r\n\r\n\r\n\r\n<p>From the command line get your IP address by typing:<\/p>\r\n\r\n\r\n\r\n<p><strong># curl https:\/\/ipinfo.io\/ip<\/strong><\/p>\r\n\r\n\r\n\r\n<p>I suppose you already have proper DNS Server setup!<\/p>\r\n<p>If you don&#8217;t have proper DNS just use your server local IP by running the following command:<\/p>\r\n<p># <strong>ip a<\/strong><\/p>\r\n\r\n\r\n\r\n<h2>Install MySQL (MariaDB)<\/h2>\r\n\r\n\r\n\r\n<p><strong># sudo yum install mariadb-server mariadb<\/strong><\/p>\r\n\r\n\r\n\r\n<p>When the installation is complete, we need to start MariaDB with the following command:<\/p>\r\n\r\n\r\n\r\n<p><strong># sudo systemctl start mariadb<\/strong><\/p>\r\n\r\n\r\n\r\n<p>Now that our MySQL database is running, we want to run a simple security script that will remove some dangerous defaults and lock down access to our database system a little bit. Start the interactive script by running:<\/p>\r\n\r\n\r\n\r\n<p><strong># sudo mysql_secure_installation<\/strong><\/p>\r\n\r\n\r\n\r\n<p>The prompt will ask you for your current root password. Since you just installed MySQL, you most likely won\u2019t have one, so leave it blank by pressing enter. Then the prompt will ask you if you want to set a root password. Go ahead and enter Y, and follow the instructions:<\/p>\r\n\r\n\r\n\r\n<p>Enter current password for root (enter for none):<br \/>OK, successfully used password, moving on\u2026<\/p>\r\n\r\n\r\n\r\n<p>Setting the root password ensures that nobody can log into the MariaDB<br \/>root user without the proper authorization.<\/p>\r\n\r\n\r\n\r\n<p>New password: password<br \/>Re-enter new password: password<br \/>Password updated successfully!<br \/>Reloading privilege tables..<br \/>\u2026 Success!<\/p>\r\n\r\n\r\n\r\n<p>For the rest of the questions, you should simply hit the &#8220;ENTER&#8221; key through each prompt to accept the default values. This will remove some sample users and databases, disable remote root logins, and load these new rules so that MySQL immediately respects the changes we have made.<\/p>\r\n\r\n\r\n\r\n<p>The last thing you will want to do is enable MariaDB to start on boot. Use the following command to do so:<\/p>\r\n\r\n\r\n\r\n<p><strong># sudo systemctl enable mariadb.service<\/strong><\/p>\r\n\r\n\r\n\r\n<h2>Install PHP<\/h2>\r\n\r\n\r\n\r\n<p>We can once again leverage the yum system to install our components. We&#8217;re going to include the php-mysql package as well:<\/p>\r\n\r\n\r\n\r\n<p><strong># sudo yum install php php-mysql<\/strong><\/p>\r\n\r\n\r\n\r\n<p>This should install PHP without any problems. We need to restart the Apache web server in order for it to work with PHP. You can do this by typing this:<\/p>\r\n\r\n\r\n\r\n<p><strong># yum search php-<\/strong><\/p>\r\n\r\n\r\n\r\n<p>If you are running a firewall, run the following commands to allow HTTP and HTTPS traffic: At the same time let&#8217;s open port 3000 for Node.js!<\/p>\r\n\r\n\r\n\r\n<p><strong># sudo firewall-cmd &#8211;zone=public &#8211;add-port=80\/tcp &#8211;permanent<br \/><\/strong><\/p>\r\n\r\n\r\n\r\n<p><strong># sudo firewall-cmd &#8211;zone=public &#8211;add-port=443\/tcp &#8211;permanent<br \/><\/strong><\/p>\r\n\r\n\r\n\r\n<p><strong># sudo firewall-cmd &#8211;zone=public &#8211;add-port=3000\/tcp &#8211;permanent<br \/><\/strong><\/p>\r\n\r\n\r\n\r\n<p><strong># sudo firewall-cmd &#8211;reload<\/strong><\/p>\r\n\r\n\r\n<hr class=\"wp-block-separator\" \/>\r\n\r\n\r\n<h2 class=\"wp-block-heading\">INSTALL NODE JS ON CENTOS 7<\/h2>\r\n<p>Login to your Server via SSH<\/p>\r\n\r\n\r\n\r\n\r\n\r\n<p># <strong>yum update<\/strong><\/p>\r\n<p>Update the system and install necessary packages<\/p>\r\n\r\n\r\n\r\n\r\n\r\n<p><strong># yum install curl sudo<\/strong><\/p>\r\n<p>Install Node.js and npm from the NodeSource repository<br \/>We will install Node.js v6 LTS and npm from the NodeSource repository which depends on the EPEL repository being available.<\/p>\r\n\r\n\r\n\r\n\r\n\r\n<p>To enable the EPEL repository on your CentOS 7, issue the following command:<\/p>\r\n\r\n\r\n\r\n<p><strong># sudo yum install epel-release<\/strong><\/p>\r\n\r\n\r\n\r\n<p>Once the EPEL repository is enabled run the following command to add the Node.js v6 LTS repository:<\/p>\r\n\r\n\r\n\r\n<p><strong># curl &#8211;silent &#8211;location https:\/\/rpm.nodesource.com\/setup_6.x | sudo bash &#8211;<\/strong><\/p>\r\n\r\n\r\n\r\n<p>If you want to enable the Node.js v8 repository instead of the command above run the following command:<\/p>\r\n\r\n\r\n\r\n<p><strong># curl &#8211;silent &#8211;location https:\/\/rpm.nodesource.com\/setup_8.x | sudo bash &#8211;<\/strong><\/p>\r\n\r\n\r\n\r\n<p>Once the NodeSource repository is enabled we can proceed with the Node.js v6 LTS and npm installation:<\/p>\r\n\r\n\r\n\r\n<p><strong># sudo yum install nodejs<\/strong><\/p>\r\n<h2 class=\"wp-block-heading\">Install the Node.js and NPM build tools<\/h2>\r\n<p>To compile and install native add-on from the npm repository we also need to install build tools:<\/p>\r\n\r\n\r\n\r\n\r\n\r\n<p><strong># sudo yum install gcc-c++ make<\/strong><\/p>\r\n\r\n\r\n\r\n<p>To verify if the Node.js installation was successful, issue the following command:<\/p>\r\n\r\n\r\n\r\n<p><strong># node -v<\/strong><\/p>\r\n\r\n\r\n\r\n<p>The output should be like the following:<\/p>\r\n\r\n\r\n\r\n<p><strong>v6.11.5<\/strong><\/p>\r\n<p><strong>Verify npm installation<\/strong><br \/>To verify if the npm installation was successful, issue the following command:<\/p>\r\n\r\n\r\n\r\n\r\n\r\n<p><strong># npm -v<\/strong><\/p>\r\n\r\n\r\n\r\n<p>The output should be like the following:<\/p>\r\n\r\n\r\n\r\n<p><strong>3.10.10<\/strong><\/p>\r\n\r\n\r\n\r\n<p><strong>Test the installation<\/strong><br \/>If you want to test the installation, create a test file:<br \/>nano hello_world.js<\/p>\r\n\r\n\r\n\r\n<p>and then add the following content:<\/p>\r\n\r\n\r\n\r\n<p><strong>const http = require(&#8216;http&#8217;);<\/strong><br \/><strong>const port = 3000;<\/strong><br \/><strong>const ip = &#8216;0.0.0.0&#8217;;<\/strong><\/p>\r\n<p><strong>\r\n\r\n<\/strong><\/p>\r\n<p><strong>http.createServer(function (req, res) {<\/strong><br \/><strong>res.writeHead(200, {&#8216;Content-Type&#8217;: &#8216;text\/plain&#8217;});<\/strong><br \/><strong>res.end(&#8216;Hello World&#8217;);<\/strong><br \/><strong>}).listen(port, ip);<\/strong><\/p>\r\n\r\n\r\n\r\n<p><strong>console.log(<code>server is running on ${ip}:${port}<\/code>);<\/strong><\/p>\r\n\r\n\r\n\r\n<p>Start the node web server by issuing the following command:<\/p>\r\n\r\n\r\n\r\n<p><strong># node hello_world.js<\/strong><\/p>\r\n\r\n\r\n\r\n<p>the output should be like the following:<\/p>\r\n\r\n\r\n\r\n<p><strong>server is running on your_server_IP:3000<\/strong><\/p>\r\n<h2 class=\"wp-block-heading\">Test the installation<\/h2>\r\n\r\n\r\n\r\n\r\n\r\n<p>If you now visit http:\/\/your_server_IP:3000 from your browser, you will see \u2018Hello World\u2019.<\/p>\r\n<p><strong>Note:<\/strong> You must open the port <strong>3000<\/strong> in your firewall<\/p>\r\n\r\n\r\n\r\n\r\n\r\n<p>Now enable the &#8220;NODEJS_HOST&#8221; with your server details under &#8216;define(&#8220;NODEJS_HOST&#8217;,&#8221;);'[ex: http:\/\/your IP:3000\/]<br \/>on &#8216;app\/Config\/constants.php<\/p>\r\n\r\n\r\n<hr class=\"wp-block-separator\" \/>\r\n\r\n\r\n<h2 class=\"wp-block-heading\">INSTALL FOREVER ON CENTOS<\/h2>\r\n\r\n\r\n\r\n<p>If you have nodejs and npm installed on CentOS, you should be able to install forever by calling:<\/p>\r\n\r\n\r\n\r\n<p><strong># npm install forever -g<\/strong><\/p>\r\n\r\n\r\n<hr class=\"wp-block-separator\" \/>\r\n\r\n\r\n<h2 class=\"wp-block-heading\">INSTALL ORANGESCRUM ON CENTOS<\/h2>\r\n\r\n\r\n\r\n<p>First let\u2019s start by ensuring your system is up-to-date.<\/p>\r\n\r\n\r\n\r\n<p><strong># yum clean all<\/strong><\/p>\r\n\r\n\r\n\r\n<p><strong># yum -y update<\/strong><\/p>\r\n\r\n\r\n\r\n<h2>Install required PHP modules<\/h2>\r\n\r\n\r\n\r\n<p><strong># yum -y install epel-release<\/strong><\/p>\r\n\r\n\r\n\r\n<p><strong># yum -y install php-gd php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-mcrypt php-mssql php-snmp php-soap php-tidy curl curl-devel<\/strong><\/p>\r\n\r\n\r\n\r\n<h2>Installing Orangescrum<\/h2>\r\n\r\n\r\n\r\n<p><strong># wget https:\/\/github.com\/Orangescrum\/orangescrum\/archive\/master.zip<\/strong><\/p>\r\n\r\n\r\n\r\n<p>After downloading Orangescrum you will need to unzip master.zip. To do this, run:<\/p>\r\n\r\n\r\n\r\n<p><strong># yum install unzip<\/strong><\/p>\r\n\r\n\r\n\r\n<p><strong># unzip master.zip<\/strong><\/p>\r\n\r\n\r\n\r\n<p><strong># mv orangescrum-master \/var\/www\/html\/<\/strong><\/p>\r\n\r\n\r\n\r\n<p>We will need to change some folders permissions:<\/p>\r\n\r\n\r\n\r\n<p><strong># chown apache:apache -R \/var\/www\/html\/<\/strong><\/p>\r\n<p><span style=\"color: #ff0000;\">I am still missing something here for the 0777<\/span><\/p>\r\n\r\n\r\n\r\n<h2>Configuring MariaDB for Orangescrum<\/h2>\r\n<p>By default, MariaDB is not hardened. You can secure MariaDB using the mysql_secure_installation script. You should read each steps below carefully which will set root password, remove anonymous user, disallow remote root login, and remove the test database in your MariaDB (MySQL) Server:<\/p>\r\n\r\n\r\n\r\n<p><strong># mysql_secure_installation<\/strong><\/p>\r\n\r\n\r\n\r\n<p>Configure it like this:<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>Set root password? [Y\/n] y<\/li>\r\n<li>Remove anonymous users? [Y\/n] y<\/li>\r\n<li>Disallow root login remotely? [Y\/n] y<\/li>\r\n<li>Remove test database and access to it? [Y\/n] y<\/li>\r\n<li>Reload privilege tables now? [Y\/n] y<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<p>Next we will need to log in to the MariaDB console and create a database for the Orangescrum. Run the following command:<\/p>\r\n\r\n\r\n\r\n<p><strong># mysql -u root -p<\/strong><\/p>\r\n\r\n\r\n\r\n<p>This will prompt you for a password, so enter your MariaDB root password and hit Enter. Once you are logged in to your database server you need to create a database for Orangescrum installation:<\/p>\r\n\r\n\r\n\r\n<p>CREATE DATABASE orangescrum;<br \/>CREATE USER &#8216;orangescrumuser&#8217;@&#8217;localhost&#8217; IDENTIFIED BY &#8216;PASSWORD&#8217;;<br \/>GRANT ALL PRIVILEGES ON orangescrum.* TO &#8216;orangescrumuser&#8217;@&#8217;localhost&#8217; IDENTIFIED BY &#8216;password&#8217; WITH GRANT OPTION;<br \/>FLUSH PRIVILEGES;<\/p>\r\n\r\n\r\n\r\n<p>Username : orangescrumuser<br \/>Password : PASSWORD *CAP is important here!~<br \/>Database : orangescrum<\/p>\r\n\r\n\r\n\r\n<p>Next you need to import the data from the database.sql file located in the \/var\/www\/html\/ directory:<\/p>\r\n\r\n\r\n\r\n<p><strong># cd \/var\/www\/html\/<\/strong><\/p>\r\n\r\n\r\n\r\n<p><strong># mysql -u orangescrum -p password &lt; database.sql<\/strong><\/p>\r\n\r\n\r\n\r\n<p>Next, By default STRICT mode is set to on in MySQL. You will need to disable it:<\/p>\r\n\r\n\r\n\r\n<p><strong># nano \/etc\/my.cnf<\/strong><\/p>\r\n\r\n\r\n\r\n<p>Find and change or add the line from:<\/p>\r\n\r\n\r\n\r\n<p><strong>sql_mode=&#8221;STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION&#8221;<\/strong><\/p>\r\n\r\n\r\n\r\n<p>To:<\/p>\r\n\r\n\r\n\r\n<p><strong>sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES<\/strong><\/p>\r\n\r\n\r\n\r\n<p>Next step, Now you need to change the post_max_size and upload_max_filesize to 200M in the php.ini file:<\/p>\r\n\r\n\r\n\r\n<p><strong># nano \/etc\/php.ini<\/strong><\/p>\r\n\r\n\r\n\r\n<p>Find and change those values<\/p>\r\n\r\n\r\n\r\n<p><strong>post_max_size=200M<\/strong><\/p>\r\n\r\n\r\n\r\n<p><strong>upload_max_filesize=200M<\/strong><\/p>\r\n<p>You may use those commands:<\/p>\r\n<p>#\u00a0<strong><code>cp \/etc\/php.ini \/etc\/php.ini.bak<\/code>\u00a0<code>sudo sed -i \"s\/post_max_size = 8M\/post_max_size = 200M\/\" \/etc\/php.ini<\/code>\u00a0<code>sudo sed -i \"s\/upload_max_filesize =2M\/upload_max_filesize = 200M\/\" \/etc\/php.ini<\/code><\/strong><\/p>\r\n\r\n\r\n\r\n<h2>Configuring Apache web server for Orangescrum<\/h2>\r\n<p>We will create Apache virtual host for your Orangescrum website. First create \u2018\/etc\/httpd\/conf.d\/vhosts.conf\u2019 file with using a text editor of your choice:<\/p>\r\n\r\n\r\n\r\n<p><strong># nano \/etc\/httpd\/conf.d\/vhosts.conf<\/strong><\/p>\r\n\r\n\r\n\r\n<p>Add this value<\/p>\r\n\r\n\r\n\r\n<p><strong>IncludeOptional vhosts.d\/*.conf<\/strong><\/p>\r\n\r\n\r\n\r\n<p>Next, create the virtual host:<\/p>\r\n\r\n\r\n\r\n<p><strong># mkdir \/etc\/httpd\/vhosts.d\/<\/strong><\/p>\r\n\r\n\r\n\r\n<p><strong># nano \/etc\/httpd\/vhosts.d\/yourdomain.com.conf<\/strong><\/p>\r\n\r\n\r\n\r\n<p>Add the following lines:<\/p>\r\n\r\n\r\n\r\n<p><br \/><strong>ServerAdmin webmaster@yourdomain.com<\/strong><br \/><strong>DocumentRoot &#8220;\/var\/www\/html\/&#8221;<\/strong><br \/><strong>ServerName yourdomain.com<\/strong><br \/><strong>ServerAlias www.yourdomain.com<\/strong><br \/><strong>ErrorLog &#8220;\/var\/log\/httpd\/error_log&#8221;<\/strong><br \/><strong>CustomLog &#8220;\/var\/log\/httpd\/access_log&#8221; combined<br \/><\/strong><strong>DirectoryIndex index.html index.php Options FollowSymLinks AllowOverride All Require all granted<\/strong><\/p>\r\n<p><strong>\r\n\r\n<\/strong><\/p>\r\n\r\n\r\n\r\n<p>Save and close the file. Restart the apache service for the changes to take effects:<\/p>\r\n\r\n\r\n\r\n<p><strong># systemctl restart httpd.service<\/strong><\/p>\r\n\r\n\r\n\r\n<h2>Configure Orangescrum<\/h2>\r\n<p>Now you need to edit the database.php file to update the database connection details:<\/p>\r\n\r\n\r\n\r\n<p><strong># nano \/var\/www\/html\/app\/Config\/database.php<\/strong><\/p>\r\n\r\n\r\n\r\n<p>Change the file as shown below, Save and close the file when you are finished:<\/p>\r\n\r\n\r\n\r\n<p>class DATABASE_CONFIG {<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code>public $default = array(\r\n        'datasource' =&gt; 'Database\/Mysql',\r\n        'persistent' =&gt; false,\r\n        'host' =&gt; 'localhost',\r\n        'login' =&gt; 'orangescrumuser',\r\n        'password' =&gt; 'PASSWORD',\r\n        'database' =&gt; 'orangescrum',\r\n        'prefix' =&gt; '',\r\n        'encoding' =&gt; 'utf8',\r\n);<\/code><\/pre>\r\n\r\n\r\n\r\n<p>Next, you need to provide your valid email address and password for SMTP, and update the FROM_EMAIL_NOTIFY and SUPPORT_EMAIL configurations in the constants.php file:<\/p>\r\n\r\n\r\n\r\n<p><strong># nano \/var\/www\/html\/app\/Config\/constants.php<\/strong><\/p>\r\n\r\n\r\n\r\n<p>Change the following lines as per your need:<\/p>\r\n\r\n\r\n\r\n<p>\/\/Gmail SMTP<br \/>define(&#8220;SMTP_HOST&#8221;, &#8220;ssl:\/\/smtp.example.com&#8221;);<br \/>define(&#8220;SMTP_PORT&#8221;, &#8220;465&#8221;);<br \/>define(&#8220;SMTP_UNAME&#8221;, &#8220;email@example.com&#8221;);<br \/>define(&#8220;SMTP_PWORD&#8221;, &#8220;[Your email password]&#8221;);<\/p>\r\n\r\n\r\n\r\n<p>define(&#8216;FROM_EMAIL_NOTIFY&#8217;, &#8217;email@example.com&#8217;); \/\/(REQUIRED)<br \/>define(&#8216;SUPPORT_EMAIL&#8217;, &#8216; email@example.com &#8216;); \/\/(REQUIRED) From Email<br \/>define(&#8220;DEV_EMAIL&#8221;, &#8217;email@example.com&#8217;); \/\/ Developer Email ID to report the application error<\/p>\r\n\r\n\r\n\r\n<p>define(&#8216;SUB_FOLDER&#8217;, &#8216;\/&#8217;);<\/p>\r\n\r\n\r\n\r\n<p>Save and close the file when you are finished.<\/p>\r\n<p><em><strong>Have fun!<\/strong><\/em><\/p>\r\n<p>[print-me]<\/p>\r\n\r\n\r\n\r\n<pre>NOTES: This post is not finish yet! Still in trial and error phase. 1-16-2019\u00a0<\/pre>\r\n\r\n\r\n\r\n<p><strong># <\/strong>mysql -u root -p orangescrum &lt; \/var\/www\/html\/database.sql<\/p>\r\n\r\n\r\n\r\n<p><strong># <\/strong>nano \/var\/www\/html\/app\/Config\/database.php<\/p>\r\n","protected":false},"excerpt":{"rendered":"<p>First you will need to install LAMP (Linux, Apache, Mysql, PHP) on a fresh Dedicated standalone server! (Do not install on a VPS) Here is a good online tutorial about deploying LAMP on CentOS \ufeff\ufeff Disable SeLinux? Edit the\u00a0\/etc\/selinux\/config\u00a0file to set the\u00a0\u00a0SELINUX\u00a0parameter to\u00a0\u00a0disabled, and then reboot the server. I have noticed after turning back &#8220;on&#8221; &hellip; <a href=\"https:\/\/easy-admin.ca\/index.php\/2019\/01\/16\/install-orangescrum-on-centos-7\/\" class=\"more-link\">Continue reading <span class=\"screen-reader-text\">Install OrangeScrum Centos 7<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":2660,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-2650","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-general"],"_links":{"self":[{"href":"https:\/\/easy-admin.ca\/index.php\/wp-json\/wp\/v2\/posts\/2650","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/easy-admin.ca\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/easy-admin.ca\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/easy-admin.ca\/index.php\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/easy-admin.ca\/index.php\/wp-json\/wp\/v2\/comments?post=2650"}],"version-history":[{"count":0,"href":"https:\/\/easy-admin.ca\/index.php\/wp-json\/wp\/v2\/posts\/2650\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/easy-admin.ca\/index.php\/wp-json\/wp\/v2\/media\/2660"}],"wp:attachment":[{"href":"https:\/\/easy-admin.ca\/index.php\/wp-json\/wp\/v2\/media?parent=2650"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/easy-admin.ca\/index.php\/wp-json\/wp\/v2\/categories?post=2650"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/easy-admin.ca\/index.php\/wp-json\/wp\/v2\/tags?post=2650"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}