LoginSignup
1
1

More than 5 years have passed since last update.

Ghost CMSをCLIで起動してみる

Last updated at Posted at 2019-01-13

ドキュメント、参考資料とか

*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とか

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1