1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

cwlのUser Guideの変更をローカルで確認する

Last updated at Posted at 2018-12-11

まずは、以下のように、レポジトリをクローンし、そのディレクトリへ移動する。

git clone https://github.com/common-workflow-language/user_guide.git
cd user_guide

なにか変更をする。

jekyllがすでにはいっていれば、

make serve

と実行する。このコマンドを実行すると、http://localhost:4000 でアクセスすると、自分の変更を確認できる。

もし、jekyllをインストールしていない場合には、dockerを使うと同じようにサーバーをたてて確認することができる。

docker run -p 4000:4000 --rm --volume="$PWD:/srv/jekyll" -it jekyll/jekyll:3.8.5 jekyll serve
1
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?