Develop & Deploy Ghost with PM2
Setting Up If you already have a git repository setup and a package.json you can skip to Dependencies. Project Create a git repository for this project: git init <project name> cd <project name> Then create your package.json the easy way: npm init Dependencies Install global dependencies like Grunt and PM2 and package dependencies like Ghost and Shrinkwrap: npm install -g grunt pm2 npm install ghost shrinkwrap --save Next, create the project’s index file at the root of the project.…