Thursday, October 1, 2020

How To Install PanoplyCMS on Ubuntu 18.04

 Video Tutorial -

 ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

 PANOPLY CMS is Open Source CMS based on meteor framework.
Features:
Single Admin
Multiple Categories
Articles Associated With Created Categories
Multiple & Multilevel Menus
Tags associated with articles
Dynamic Template
Menu Module that can load at any given position
HTML Blocks that can load at any given position
Slider Module that can load at any given position
Offcial Website: http://panoplycms.com/
Github:https://github.com/DeligenceTechnologies/Panoplycms
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Our Server Specification-     
Os:Ubuntu 18.04 LTS Bionic Beaver 64Bit   | IP address- 192.168.1.50  | Hostname :www.yourdomain.com
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
lsb_release -cd ; hostname ; hostname -I ; whoami ; getconf LONG_BIT ; sudo apt install -y build-essential software-properties-common git curl gdebi net-tools wget sqlite3 dirmngr nano lsb-release apt-transport-https -y

curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -  && echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list


sudo apt-get update ; sudo apt-get install nodejs yarn zlib1g-dev build-essential libpq-dev libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev libffi-dev -y

cd ~/ ; git clone https://github.com/rbenv/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(rbenv init -)"' >> ~/.bashrc
exec $SHELL

git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
echo 'export PATH="$HOME/.rbenv/plugins/ruby-build/bin:$PATH"' >> ~/.bashrc
exec $SHELL

rbenv install 2.5.3
rbenv global 2.5.3
gem install bundler
gem install rails -v 5.2.3
rbenv rehash

npm install pm2 -g
curl https://install.meteor.com/ | sh
cd ~/ ; git clone https://github.com/DeligenceTechnologies/PanoplyCMS.git
cd PanoplyCMS
meteor add kadira:graphql
meteor add react
meteor add react-meteor-data
meteor npm install
meteor npm install --save babel-runtime
meteor --settings settings.json

Frontend Link : http://localhost:3000 , Backend Link: http://localhost:3000/admin
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

No comments:

Post a Comment