Skip to content

Commit 769d8c1

Browse files
committed
Trying to build a main page
0 parents  commit 769d8c1

File tree

6 files changed

+129
-0
lines changed

6 files changed

+129
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
_site
2+
.sass-cache
3+
.jekyll-metadata

Gemfile

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
source "https://rubygems.org"
2+
3+
# Hello! This is where you manage which Jekyll version is used to run.
4+
# When you want to use a different version, change it below, save the
5+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
6+
#
7+
# bundle exec jekyll serve
8+
#
9+
# This will help ensure the proper Jekyll version is running.
10+
# Happy Jekylling!
11+
gem "jekyll", "~> 3.8.5"
12+
13+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
14+
gem "vertx-howtos-jekyll-theme"
15+
16+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
17+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
18+
# gem "github-pages", group: :jekyll_plugins
19+
20+
# If you have any plugins, put them here!
21+
group :jekyll_plugins do
22+
gem "jekyll-feed", "~> 0.6"
23+
end
24+
25+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
26+
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
27+
28+
# Performance-booster for watching directories on Windows
29+
gem "wdm", "~> 0.1.0" if Gem.win_platform?
30+

Gemfile.lock

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.6.0)
5+
public_suffix (>= 2.0.2, < 4.0)
6+
colorator (1.1.0)
7+
concurrent-ruby (1.1.5)
8+
em-websocket (0.5.1)
9+
eventmachine (>= 0.12.9)
10+
http_parser.rb (~> 0.6.0)
11+
eventmachine (1.2.7)
12+
ffi (1.10.0)
13+
forwardable-extended (2.6.0)
14+
http_parser.rb (0.6.0)
15+
i18n (0.9.5)
16+
concurrent-ruby (~> 1.0)
17+
jekyll (3.8.5)
18+
addressable (~> 2.4)
19+
colorator (~> 1.0)
20+
em-websocket (~> 0.5)
21+
i18n (~> 0.7)
22+
jekyll-sass-converter (~> 1.0)
23+
jekyll-watch (~> 2.0)
24+
kramdown (~> 1.14)
25+
liquid (~> 4.0)
26+
mercenary (~> 0.3.3)
27+
pathutil (~> 0.9)
28+
rouge (>= 1.7, < 4)
29+
safe_yaml (~> 1.0)
30+
jekyll-feed (0.12.0)
31+
jekyll (>= 3.7, < 5.0)
32+
jekyll-sass-converter (1.5.2)
33+
sass (~> 3.4)
34+
jekyll-watch (2.2.0)
35+
listen (~> 3.0)
36+
kramdown (1.17.0)
37+
liquid (4.0.3)
38+
listen (3.1.5)
39+
rb-fsevent (~> 0.9, >= 0.9.4)
40+
rb-inotify (~> 0.9, >= 0.9.7)
41+
ruby_dep (~> 1.2)
42+
mercenary (0.3.6)
43+
pathutil (0.16.2)
44+
forwardable-extended (~> 2.6)
45+
public_suffix (3.0.3)
46+
rb-fsevent (0.10.3)
47+
rb-inotify (0.10.0)
48+
ffi (~> 1.0)
49+
rouge (3.3.0)
50+
ruby_dep (1.5.0)
51+
safe_yaml (1.0.5)
52+
sass (3.7.3)
53+
sass-listen (~> 4.0.0)
54+
sass-listen (4.0.0)
55+
rb-fsevent (~> 0.9, >= 0.9.4)
56+
rb-inotify (~> 0.9, >= 0.9.7)
57+
vertx-howtos-jekyll-theme (0.3.0)
58+
jekyll (~> 3.8)
59+
60+
PLATFORMS
61+
ruby
62+
63+
DEPENDENCIES
64+
jekyll (~> 3.8.5)
65+
jekyll-feed (~> 0.6)
66+
tzinfo-data
67+
vertx-howtos-jekyll-theme
68+
69+
BUNDLED WITH
70+
1.17.2

_config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
remote_theme: vertx-howtos/vertx-howtos-jekyll-theme

_data/howtos.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
- repo: aws-native-image-lambda-howto
2+
description: Deploying a Vert.x Native Image function with AWS Lambda
3+
tags:
4+
- aws
5+
- native
6+
- faas
7+
- serverless
8+
- graalvm
9+
10+
- repo: knative-serving-howto
11+
description: Deploying a Knative service powered by Vert.x
12+
tags:
13+
- serverless
14+
- knative
15+
- kotlin
16+
17+
- repo: http-client-howto
18+
description: Performing HTTP requests to other services
19+
tags:
20+
- http
21+
- client

index.html

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
layout: frontpage
3+
title: Index
4+
---

0 commit comments

Comments
 (0)