Skip to content

Commit 012e6bf

Browse files
author
vcmirko
committed
first start to add documentation
1 parent 2c8d34a commit 012e6bf

File tree

225 files changed

+26406
-272
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

225 files changed

+26406
-272
lines changed

docs/404.html

Lines changed: 0 additions & 25 deletions
This file was deleted.

docs/404.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "Page Not Found"
3+
search: exclude
4+
---
5+
6+
Sorry, but the page you were trying to view does not exist. Try searching for it or looking at the URL to see if it looks correct.

docs/Dockerfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM jekyll/builder
2+
3+
WORKDIR /tmp
4+
ADD Gemfile /tmp/
5+
ADD Gemfile.lock /tmp/
6+
RUN bundle install
7+
8+
FROM jekyll/jekyll
9+
10+
VOLUME /src
11+
EXPOSE 4000
12+
13+
WORKDIR /src
14+
ENTRYPOINT ["jekyll", "serve", "--livereload", "-H", "0.0.0.0"]

docs/Gemfile

Lines changed: 4 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,7 @@
11
source "https://rubygems.org"
2-
# Hello! This is where you manage which Jekyll version is used to run.
3-
# When you want to use a different version, change it below, save the
4-
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
5-
#
6-
# bundle exec jekyll serve
7-
#
8-
# This will help ensure the proper Jekyll version is running.
9-
# Happy Jekylling!
10-
# gem "jekyll", "~> 4.3.2"
11-
gem "github-pages", "~> 228", group: :jekyll_plugins
12-
# This is the default theme for new Jekyll sites. You may change this to anything you like.
13-
gem "minima", "~> 2.5"
14-
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
15-
# uncomment the line below. To upgrade, run `bundle update github-pages`.
16-
# gem "github-pages", group: :jekyll_plugins
17-
# If you have any plugins, put them here!
18-
group :jekyll_plugins do
19-
gem "jekyll-feed", "~> 0.12"
20-
end
212

22-
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
23-
# and associated library.
24-
platforms :mingw, :x64_mingw, :mswin, :jruby do
25-
gem "tzinfo", ">= 1", "< 3"
26-
gem "tzinfo-data"
27-
end
3+
# to publish on github page
4+
gem 'github-pages', group: :jekyll_plugins
285

29-
# Performance-booster for watching directories on Windows
30-
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
31-
32-
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
33-
# do not have a Java counterpart.
34-
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]
6+
# to publich without github page
7+
#gem "jekyll"

0 commit comments

Comments
 (0)