Skip to content

Commit

Permalink
Merge pull request #23 from inferior3x/start_server
Browse files Browse the repository at this point in the history
[FEAT] 서버를 실행할 수 있는 파일을 생성 및 설명합니다.
  • Loading branch information
inferior3x authored Oct 29, 2024
2 parents 3887b44 + 22a0843 commit 080ad0d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/로컬에서 실행하기.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,15 @@
```
bundle exec jekyll serve
```
- (선택) 파일로 실행하기
- Mac
```
chmod +x ./start_server.sh (한 번만 해주면 됩니다.)
```
```
./start_server.sh
```
- Window
```
start_server.bat
```
3 changes: 3 additions & 0 deletions start_server.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@echo off
bundle exec jekyll serve
pause
2 changes: 2 additions & 0 deletions start_server.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
bundle exec jekyll serve

0 comments on commit 080ad0d

Please sign in to comment.