Skip to content

Commit 109a96b

Browse files
authored
Initial commit
0 parents  commit 109a96b

39 files changed

+3769
-0
lines changed

.github/workflows/deploy.yml

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main # Set this to your default branch
7+
workflow_dispatch:
8+
9+
permissions:
10+
contents: read
11+
pages: write
12+
id-token: write
13+
14+
concurrency:
15+
group: "pages"
16+
cancel-in-progress: false
17+
18+
jobs:
19+
build:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- name: Checkout
23+
uses: actions/checkout@v4
24+
25+
- name: Setup Ruby
26+
uses: ruby/setup-ruby@v1
27+
with:
28+
ruby-version: '3.2'
29+
bundler-cache: true
30+
31+
- name: Setup Pages
32+
uses: actions/configure-pages@v4
33+
34+
- name: Build with Jekyll
35+
run: bundle exec jekyll build
36+
env:
37+
JEKYLL_ENV: production
38+
39+
- name: Upload artifact
40+
uses: actions/upload-pages-artifact@v3
41+
42+
deploy:
43+
environment:
44+
name: github-pages
45+
url: ${{ steps.deployment.outputs.page_url }}
46+
runs-on: ubuntu-latest
47+
needs: build
48+
steps:
49+
- name: Deploy to GitHub Pages
50+
id: deployment
51+
uses: actions/deploy-pages@v4

.gitignore

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Dependencies
2+
node_modules/
3+
vendor/
4+
.bundle/
5+
6+
# Build output
7+
_site/
8+
.sass-cache/
9+
.jekyll-cache/
10+
.jekyll-metadata
11+
.cache/
12+
dist/
13+
build/
14+
15+
# Environment files
16+
.env
17+
.env.local
18+
.env.*.local
19+
20+
# IDE and Editor files
21+
.idea/
22+
.vscode/
23+
*.swp
24+
*.swo
25+
*~
26+
27+
# OS generated files
28+
.DS_Store
29+
.DS_Store?
30+
._*
31+
.Spotlight-V100
32+
.Trashes
33+
ehthumbs.db
34+
Thumbs.db
35+
36+
# Log files
37+
*.log
38+
npm-debug.log*
39+
yarn-debug.log*
40+
yarn-error.log*
41+
42+
# Optional npm cache directory
43+
.npm
44+
45+
# Optional eslint cache
46+
.eslintcache
47+
48+
# Optional REPL history
49+
.node_repl_history
50+
51+
# Output of 'npm pack'
52+
*.tgz
53+
54+
# Yarn Integrity file
55+
.yarn-integrity
56+
57+
# Local development files
58+
*.local

Dockerfile

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
FROM ruby:3.2.2-slim
2+
3+
# Install essential Linux packages
4+
RUN apt-get update -qq && apt-get install -y \
5+
build-essential \
6+
nodejs \
7+
&& rm -rf /var/lib/apt/lists/*
8+
9+
# Set working directory
10+
WORKDIR /app
11+
12+
# Install Jekyll and Bundler
13+
RUN gem install bundler jekyll
14+
15+
# Copy Gemfile and Gemfile.lock
16+
COPY Gemfile* ./
17+
18+
# Install dependencies
19+
RUN bundle install
20+
21+
# Copy the rest of the application
22+
COPY . .
23+
24+
# Expose port 4000
25+
EXPOSE 4000
26+
27+
# Set the default command
28+
CMD ["bundle", "exec", "jekyll", "serve", "--host", "0.0.0.0"]

Gemfile

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
source "https://rubygems.org"
2+
3+
gem "jekyll", "~> 4.3.2"
4+
gem "webrick", "~> 1.8"
5+
gem "jekyll-paginate-v2"
6+
7+
group :jekyll_plugins do
8+
gem "jekyll-feed", "~> 0.17.0"
9+
gem "jekyll-seo-tag", "~> 2.8.0"
10+
end
11+
12+
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
13+
# and associated library.
14+
platforms :mingw, :x64_mingw, :mswin, :jruby do
15+
gem "tzinfo", ">= 1", "< 3"
16+
gem "tzinfo-data"
17+
end
18+
19+
# Performance-booster for watching directories on Windows
20+
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]

Gemfile.lock

+88
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.7)
5+
public_suffix (>= 2.0.2, < 7.0)
6+
bigdecimal (3.1.9)
7+
colorator (1.1.0)
8+
concurrent-ruby (1.3.4)
9+
em-websocket (0.5.3)
10+
eventmachine (>= 0.12.9)
11+
http_parser.rb (~> 0)
12+
eventmachine (1.2.7)
13+
ffi (1.17.1-aarch64-linux-gnu)
14+
forwardable-extended (2.6.0)
15+
google-protobuf (4.29.2-aarch64-linux)
16+
bigdecimal
17+
rake (>= 13)
18+
http_parser.rb (0.8.0)
19+
i18n (1.14.6)
20+
concurrent-ruby (~> 1.0)
21+
jekyll (4.3.4)
22+
addressable (~> 2.4)
23+
colorator (~> 1.0)
24+
em-websocket (~> 0.5)
25+
i18n (~> 1.0)
26+
jekyll-sass-converter (>= 2.0, < 4.0)
27+
jekyll-watch (~> 2.0)
28+
kramdown (~> 2.3, >= 2.3.1)
29+
kramdown-parser-gfm (~> 1.0)
30+
liquid (~> 4.0)
31+
mercenary (>= 0.3.6, < 0.5)
32+
pathutil (~> 0.9)
33+
rouge (>= 3.0, < 5.0)
34+
safe_yaml (~> 1.0)
35+
terminal-table (>= 1.8, < 4.0)
36+
webrick (~> 1.7)
37+
jekyll-feed (0.17.0)
38+
jekyll (>= 3.7, < 5.0)
39+
jekyll-paginate-v2 (3.0.0)
40+
jekyll (>= 3.0, < 5.0)
41+
jekyll-sass-converter (3.0.0)
42+
sass-embedded (~> 1.54)
43+
jekyll-seo-tag (2.8.0)
44+
jekyll (>= 3.8, < 5.0)
45+
jekyll-watch (2.2.1)
46+
listen (~> 3.0)
47+
kramdown (2.5.1)
48+
rexml (>= 3.3.9)
49+
kramdown-parser-gfm (1.1.0)
50+
kramdown (~> 2.0)
51+
liquid (4.0.4)
52+
listen (3.9.0)
53+
rb-fsevent (~> 0.10, >= 0.10.3)
54+
rb-inotify (~> 0.9, >= 0.9.10)
55+
mercenary (0.4.0)
56+
pathutil (0.16.2)
57+
forwardable-extended (~> 2.6)
58+
public_suffix (6.0.1)
59+
rake (13.2.1)
60+
rb-fsevent (0.11.2)
61+
rb-inotify (0.11.1)
62+
ffi (~> 1.0)
63+
rexml (3.4.0)
64+
rouge (4.5.1)
65+
safe_yaml (1.0.5)
66+
sass-embedded (1.83.1-aarch64-linux-gnu)
67+
google-protobuf (~> 4.29)
68+
terminal-table (3.0.2)
69+
unicode-display_width (>= 1.1.1, < 3)
70+
unicode-display_width (2.6.0)
71+
webrick (1.9.1)
72+
73+
PLATFORMS
74+
aarch64-linux-gnu
75+
x86_64-linux-gnu
76+
77+
DEPENDENCIES
78+
jekyll (~> 4.3.2)
79+
jekyll-feed (~> 0.17.0)
80+
jekyll-paginate-v2
81+
jekyll-seo-tag (~> 2.8.0)
82+
tzinfo (>= 1, < 3)
83+
tzinfo-data
84+
wdm (~> 0.1.1)
85+
webrick (~> 1.8)
86+
87+
BUNDLED WITH
88+
2.6.2

0 commit comments

Comments
 (0)