Commit Graph

33 Commits

Author SHA1 Message Date
Kazuhiro MUSASHI 48a64fb942 Merge pull request 'サイトの設定を更新' (#9) from modify-site-settings into master
Reviewed-on: #9
2023-01-03 03:50:05 +00:00
Kazuhiro MUSASHI b7cd329022 サイトの設定を更新 2023-01-03 12:48:42 +09:00
Kazuhiro MUSASHI 3bc06c5dbc Merge pull request '原稿の更新' (#8) from modify-articles into master
Reviewed-on: #8
2023-01-03 03:46:45 +00:00
Kazuhiro MUSASHI b40a91fd86 原稿の更新 2023-01-03 12:45:00 +09:00
Kazuhiro MUSASHI b3319b39f2 Merge pull request '執筆者情報・ページの更新' (#7) from update-author-pages into master
Reviewed-on: #7
2023-01-03 03:41:56 +00:00
Kazuhiro MUSASHI 1b08d15cf0 管理人さんのauthorページにプロフィール画像などを追加 2023-01-03 12:39:01 +09:00
Kazuhiro MUSASHI 80d4b78486 管理人さんのauthor情報を作成 2023-01-03 12:37:42 +09:00
Kazuhiro MUSASHI 823d993bc4 武蔵一弘さんのauthorページにプロフィール画像などを追加 2023-01-03 12:36:56 +09:00
Kazuhiro MUSASHI 265a35bc7d 武蔵一弘さんのプロフィールを更新 2023-01-03 12:35:29 +09:00
Kazuhiro MUSASHI 624ff3f47c Merge pull request 'Staging環境へのデプロイを行うタスクを追加' (#6) from add-deploy-rake-task into master
Reviewed-on: #6
2023-01-03 03:32:17 +00:00
Kazuhiro MUSASHI e2c08640d1 `prep.rake`と`staging.rake`の作成 2023-01-03 12:30:49 +09:00
Kazuhiro MUSASHI e49e7b2ce5 `public`フォルダを管理対象外にする 2023-01-01 18:45:00 +09:00
Kazuhiro MUSASHI 814d293a25 Merge pull request 'Create schedule page.' (#4) from schedule-page into master
Reviewed-on: #4
2023-01-01 06:11:53 +00:00
Kazuhiro MUSASHI 847de7f40f Create schedule page. 2023-01-01 06:11:53 +00:00
Kazuhiro MUSASHI 619b1d1eea Merge pull request 'Create author page.' (#3) from authors-page into master
Reviewed-on: #3
2023-01-01 06:11:04 +00:00
Kazuhiro MUSASHI ec8addad10 Create author page. 2023-01-01 06:11:04 +00:00
Kazuhiro MUSASHI 8dd602a44c Merge pull request 'Create about page.' (#2) from about-page into master
Reviewed-on: #2
2023-01-01 06:08:32 +00:00
Kazuhiro MUSASHI 960178055f Create about page. 2023-01-01 15:04:05 +09:00
Kazuhiro MUSASHI 9d469be5b7 Merge pull request 'ドラフトのサイトを作成' (#1) from draft into master
Reviewed-on: #1
2023-01-01 01:35:20 +00:00
Kazuhiro MUSASHI 421d3be1f8 忘年会2022を支える技術の記事を追加 2023-01-01 10:33:29 +09:00
Kazuhiro MUSASHI d63aab7986 忘年会の記事を追加 2023-01-01 10:32:33 +09:00
Kazuhiro MUSASHI 9554a8df53 2022年の振り返り記事を投稿 2023-01-01 10:31:12 +09:00
Kazuhiro MUSASHI b62f21c9de 東北復興マラソンの記事を追加 2023-01-01 10:29:29 +09:00
Kazuhiro MUSASHI 3c94cb3b80 仙台ハーフマラソンの記事を追加 2023-01-01 10:26:04 +09:00
Kazuhiro MUSASHI 4026ddbe80 執筆者データを作成 2023-01-01 10:21:24 +09:00
Kazuhiro MUSASHI e0858e935c `Blowfish`の設定 2023-01-01 10:21:24 +09:00
Kazuhiro MUSASHI 316defd561 `Blowfish`の初期設定 2023-01-01 10:21:24 +09:00
Kazuhiro MUSASHI 90f631ac67 [Blowfish](https://nunocoracao.github.io/blowfish/)の導入 2023-01-01 10:21:24 +09:00
Kazuhiro MUSASHI 6ab93a3d2d `hugo sever`用のタスクを追加
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 0000000..99233bd
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,3 @@
+#!/usr/bin/env rake
+
+Dir['tasks/**/*.rake'].each { |path| load path }
diff --git a/tasks/demo.rake b/tasks/demo.rake
new file mode 100755
index 0000000..d10863b
--- /dev/null
+++ b/tasks/demo.rake
@@ -0,0 +1,12 @@
+#!/usr/bin/env rake
+
+require 'socket'
+
+desc 'Generate the HTML demo pages including drafts'
+task :demo do
+  ip = Socket.getifaddrs.select{|x|
+    x.name == "ens160" and x.addr.ipv4?
+  }.first.addr.ip_address
+
+  sh "hugo server --buildDrafts -w --bind #{ip} -b #{ip} --disableFastRender"
+end
2023-01-01 10:21:24 +09:00
Kazuhiro MUSASHI f2a644a066 Git LFSを利用する 2023-01-01 10:21:24 +09:00
Kazuhiro MUSASHI 2b749aca8b Add .gitignore 2022-12-31 12:26:13 +09:00
Kazuhiro MUSASHI bed004d68a `readme.md`の追加 2022-12-30 17:13:58 +09:00
Kazuhiro MUSASHI 500a2aaefe initial commit 2022-12-30 17:11:39 +09:00