From 10daf286edf6c5a1c186cbe26bc39f666b837225 Mon Sep 17 00:00:00 2001 From: coco3x Date: Wed, 30 Oct 2024 02:58:33 +0900 Subject: [PATCH 1/3] =?UTF-8?q?feat:=20=EC=84=9C=EB=B2=84=20=EC=8B=A4?= =?UTF-8?q?=ED=96=89=20=ED=8C=8C=EC=9D=BC=20(Mac)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 파일을 실행하여 블로그 서버를 실행할 수 있도록 합니다. --- start_server.sh | 2 ++ 1 file changed, 2 insertions(+) create mode 100755 start_server.sh diff --git a/start_server.sh b/start_server.sh new file mode 100755 index 0000000..193d929 --- /dev/null +++ b/start_server.sh @@ -0,0 +1,2 @@ +bundle exec jekyll serve + From 7b6476379cd72e6991a6483aec80f330a24e64db Mon Sep 17 00:00:00 2001 From: coco3x Date: Wed, 30 Oct 2024 03:01:09 +0900 Subject: [PATCH 2/3] =?UTF-8?q?feat:=20=EC=84=9C=EB=B2=84=20=EC=8B=A4?= =?UTF-8?q?=ED=96=89=20=ED=8C=8C=EC=9D=BC=20(Window)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- start_server.bat | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 start_server.bat diff --git a/start_server.bat b/start_server.bat new file mode 100644 index 0000000..58bf874 --- /dev/null +++ b/start_server.bat @@ -0,0 +1,3 @@ +@echo off +bundle exec jekyll serve +pause From 22a08431eff4fc2dbbc8fe40b6dc210ddf4451f6 Mon Sep 17 00:00:00 2001 From: coco3x Date: Wed, 30 Oct 2024 03:11:19 +0900 Subject: [PATCH 3/3] =?UTF-8?q?docs:=20=EC=8B=A4=ED=96=89=20=EA=B0=80?= =?UTF-8?q?=EC=9D=B4=EB=93=9C=EC=97=90=20=ED=8C=8C=EC=9D=BC=EB=A1=9C=20?= =?UTF-8?q?=EC=8B=A4=ED=96=89=ED=95=98=EB=8A=94=20=EB=B2=95=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...4\213\244\355\226\211\355\225\230\352\270\260.md" | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git "a/docs/\353\241\234\354\273\254\354\227\220\354\204\234 \354\213\244\355\226\211\355\225\230\352\270\260.md" "b/docs/\353\241\234\354\273\254\354\227\220\354\204\234 \354\213\244\355\226\211\355\225\230\352\270\260.md" index 6826ff9..be53c9b 100644 --- "a/docs/\353\241\234\354\273\254\354\227\220\354\204\234 \354\213\244\355\226\211\355\225\230\352\270\260.md" +++ "b/docs/\353\241\234\354\273\254\354\227\220\354\204\234 \354\213\244\355\226\211\355\225\230\352\270\260.md" @@ -20,3 +20,15 @@ ``` bundle exec jekyll serve ``` +- (선택) 파일로 실행하기 + - Mac + ``` + chmod +x ./start_server.sh (한 번만 해주면 됩니다.) + ``` + ``` + ./start_server.sh + ``` + - Window + ``` + start_server.bat + ```