画像をGit LFSの管理外に

This commit is contained in:
Kazuhiro MUSASHI 2023-01-09 21:54:04 +09:00 committed by kazu634
parent 74dede9094
commit 8beeed147f
11 changed files with 1 additions and 3 deletions

2
.gitattributes vendored
View File

@ -1,2 +0,0 @@
*.png filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text

Binary file not shown.

Before

Width:  |  Height:  |  Size: 130 B

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 131 B

After

Width:  |  Height:  |  Size: 321 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 131 B

After

Width:  |  Height:  |  Size: 321 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 130 B

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 130 B

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 130 B

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 129 B

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 132 B

After

Width:  |  Height:  |  Size: 4.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 132 B

After

Width:  |  Height:  |  Size: 4.1 MiB

View File

@ -5,7 +5,7 @@ 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?
x.name =~ /^e.{2}\d+/ and x.addr.ipv4?
}.first.addr.ip_address
sh "hugo server --buildDrafts -w --bind #{ip} -b #{ip} --disableFastRender"