Skip to content

Commit d89ecad

Browse files
committed
Merge branch 'master' into feat/reserve_branche
2 parents 0f982a7 + ac40a26 commit d89ecad

File tree

4 files changed

+27
-7
lines changed

4 files changed

+27
-7
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@ _site
33
.jekyll-metadata
44
.DS_Store
55

6+
7+
node_modules/
8+
*.pyc
9+
vendor/

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ group :jekyll_plugins do
4040
gem 'jekyll-archives'
4141
gem 'octopress'
4242
gem "kramdown-parser-gfm"
43-
end
43+
end

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,22 @@ npm run build:js # minify and add banner
3636
npm run watch:js # optional: automatically rebuild on changes
3737
```
3838

39+
## Local development
40+
41+
Install Ruby gems specified in the `Gemfile` with:
42+
43+
```bash
44+
bundle install
45+
```
46+
47+
Serve the site locally with:
48+
49+
```bash
50+
bundle exec jekyll serve
51+
```
52+
53+
GitHub Actions already runs these commands automatically during deployments.
54+
3955
# ToDo
4056

4157
Have a consistency in the font and font sizes (ideally you want to use 2 fonts. One for the header/subtitle and one for the text. You can use this kind of website https://fontjoy.com/ which allow you to pair fonts).

run_scripts.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
TARGET="./_posts"
44

5-
python markdown_file_processor.py --path "$TARGET"
6-
python fix_frontmatter.py --path "$TARGET"
7-
python search_code_snippets.py --path "$TARGET"
8-
# python process_markdown_frontmatter.py --path "$TARGET"
9-
python rename_files_spaces.py --path "$TARGET"
10-
python markdown_frontmatter_cleanup.py --path "$TARGET"
5+
python3 markdown_file_processor.py --path "$TARGET"
6+
python3 fix_frontmatter.py --path "$TARGET"
7+
python3 search_code_snippets.py --path "$TARGET"
8+
# python3 process_markdown_frontmatter.py --path "$TARGET"
9+
python3 rename_files_spaces.py --path "$TARGET"
10+
python3 markdown_frontmatter_cleanup.py --path "$TARGET"

0 commit comments

Comments
 (0)