-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
11f1f94
commit 1cbb5df
Showing
5 changed files
with
84 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +0,0 @@ | ||
use flake . | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ruby 3.4.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,24 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
source 'https://rubygems.org' | ||
|
||
gem "jekyll" | ||
gem "kramdown" | ||
gem "kramdown-parser-gfm" | ||
gem "webrick" | ||
ruby '3.4.1' | ||
|
||
gem 'jekyll' | ||
gem 'kramdown' | ||
gem 'kramdown-parser-gfm' | ||
gem 'webrick' | ||
|
||
group :jekyll_plugins do | ||
gem "jekyll-paginate-v2" | ||
gem "jekyll-sitemap" | ||
gem "jekyll_picture_tag" | ||
gem "jekyll-toc" | ||
gem "jekyll-postcss-v2" | ||
gem "jekyll-inline-svg" | ||
gem 'jekyll-inline-svg' | ||
gem 'jekyll-paginate-v2' | ||
gem 'jekyll_picture_tag' | ||
gem 'jekyll-postcss-v2' | ||
gem 'jekyll-sitemap' | ||
gem 'jekyll-toc' | ||
end | ||
group :jekyll_plugins, :production do | ||
gem "jekyll-brotli" | ||
gem "jekyll-gzip" | ||
gem "jekyll-minifier" | ||
gem 'jekyll-brotli' | ||
gem 'jekyll-gzip' | ||
gem 'jekyll-minifier' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
namespace :jekyll do | ||
desc 'Serve production landing page' | ||
task :prod_landing do | ||
sh 'JEKYLL_ENV="production" bundle exec jekyll serve --config "_config.yml,_config_landing.yml" --trace --livereload --livereload-port 35733 --port 3003' | ||
end | ||
|
||
desc 'Serve production blog' | ||
task :prod_blog do | ||
sh 'JEKYLL_ENV="production" bundle exec jekyll serve --trace --livereload --livereload-port 35732 --port 3002' | ||
end | ||
|
||
desc 'Serve development landing page' | ||
task :dev_landing do | ||
sh 'bundle exec jekyll serve --config "_config.yml,_config_landing.yml" --trace --livereload --livereload-port 35731 --port 3001 --unpublished' | ||
end | ||
|
||
desc 'Serve development blog' | ||
task :dev_blog do | ||
sh 'bundle exec jekyll serve --trace --livereload --livereload-port 35730 --port 3000 --unpublished' | ||
end | ||
end |