ドキュメント、参考資料とか
*github
https://github.com/TryGhost/Ghost
*setup ways( local install, from source, ubuntu, docker)
https://docs.ghost.org/setup/
*suport version
https://docs.ghost.org/faq/node-versions/
起動とか
mkdir -p ~/ghostProj/
cd ~/ghostProj/
npm init -y
npm install -D ghost-cli@latest
*REF - うんちく - dオプションとDオプションの違い
https://qiita.com/trapple/items/a8a91f9ba8d550c49ccf
インストール準備
https://gitlab.com/Abc/ghost.git
mkdir ~/ghostProj/ghost/myBlog/
cd ~/ghostProj/ghost/myBlog/ *インストールするときREAMEが邪魔したから新しくディレクトリを作成して移動した。
インストール
npx ghost install local
npx ghost stop/start
*ブラウザ側
http://localhost:xxxx/
http://localhost:xxxx/ghost (管理画面)
REFとか