Skip to content

Commit e22f565

Browse files
committed
Fix startserver.sh and add exclude rules to _config.yml
1 parent 9973480 commit e22f565

2 files changed

Lines changed: 15 additions & 1 deletion

File tree

_config.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,16 @@ permalink: :title.html
22
lsi: false
33
highlighter: rouge
44
markdown: kramdown
5+
6+
exclude:
7+
- Gemfile
8+
- Gemfile.lock
9+
- startserver.sh
10+
- startserver.bat
11+
- startsass.sh
12+
- startsass.bat
13+
- CLAUDE.md
14+
- README
15+
- .envrc
16+
- .jekyll-cache
17+
- vendor

startserver.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
#!/bin/sh
22
echo Visit http://localhost:4000 in your browser to see the blog
3-
jekyll serve --watch --incremental --future $@
3+
export PATH="/opt/homebrew/Cellar/ruby/3.4.8/bin:$PATH"
4+
bundle exec jekyll serve --livereload --incremental --future "$@"

0 commit comments

Comments
 (0)