-
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.
Merge pull request #7 from soumyadsanyal/soumyadsanyal/migrate_to_Hugo
Migrate to Hugo.
- Loading branch information
Showing
112 changed files
with
5,148 additions
and
2,658 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
.DS_Store |
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,3 @@ | ||
[submodule "themes/hugo-bearblog"] | ||
path = themes/hugo-bearblog | ||
url = https://github.com/janraasch/hugo-bearblog.git |
Empty file.
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,35 @@ | ||
FROM alpine:3.18.4 as os | ||
|
||
FROM os as development | ||
RUN apk update && apk upgrade && apk add \ | ||
git \ | ||
python3 \ | ||
aws-cli \ | ||
vim \ | ||
curl \ | ||
zsh \ | ||
wget \ | ||
jq \ | ||
tmux | ||
|
||
FROM development as shell | ||
# Default powerline10k theme, no plugins installed | ||
RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.1.5/zsh-in-docker.sh)" | ||
|
||
WORKDIR /root | ||
RUN git clone https://github.com/softmoth/zsh-vim-mode.git | ||
RUN echo "source \"$HOME/zsh-vim-mode/zsh-vim-mode.plugin.zsh\"" >> /root/.zshrc | ||
WORKDIR / | ||
|
||
FROM shell as with_go | ||
RUN apk add \ | ||
go | ||
|
||
FROM with_go as with_hugo | ||
RUN sh -c "$(wget -O hugo.tar.gz https://github.com/gohugoio/hugo/releases/download/v0.119.0/hugo_0.119.0_linux-arm64.tar.gz)" | ||
RUN tar -xzvf hugo.tar.gz && rm -rf hugo.tar.gz | ||
RUN mv hugo /usr/bin/hugo | ||
|
||
ENTRYPOINT [ "zsh" ] | ||
|
||
WORKDIR /host/ |
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
+++ | ||
title = '{{ replace .File.ContentBaseName "-" " " | title }}' | ||
date = {{ .Date }} | ||
draft = true | ||
+++ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.