Skip to content

Commit bd01f96

Browse files
Initial commit
0 parents  commit bd01f96

12 files changed

Lines changed: 707 additions & 0 deletions

File tree

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: Deploy Jekyll with GitHub Pages
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: "pages"
15+
cancel-in-progress: false
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout
22+
uses: actions/checkout@v4
23+
24+
- name: Setup Ruby
25+
uses: ruby/setup-ruby@v1
26+
with:
27+
ruby-version: 3.3
28+
bundler-cache: true
29+
cache-version: 0
30+
31+
- name: Install Bundler
32+
run: gem install bundler
33+
working-directory: ./docs
34+
35+
- name: Install dependencies
36+
run: bundle install
37+
working-directory: ./docs
38+
39+
- name: Build with Jekyll
40+
run: bundle exec jekyll build --source ./ --destination ./_site
41+
working-directory: ./docs
42+
43+
- name: Upload artifact
44+
uses: actions/upload-pages-artifact@v3
45+
with:
46+
path: ./docs/_site
47+
48+
deploy:
49+
environment:
50+
name: github-pages
51+
url: ${{ steps.deployment.outputs.page_url }}
52+
runs-on: ubuntu-latest
53+
needs: build
54+
steps:
55+
- name: Deploy to GitHub Pages
56+
id: deployment
57+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.obsidian

docs/Gemfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source 'https://rubygems.org'
2+
3+
gem "jekyll", "~> 4.4.1"
4+
gem "jekyll-relative-links"
5+
gem "jekyll-sitemap"
6+
gem "just-the-docs", "0.10.1"

docs/Gemfile.lock

Lines changed: 170 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,170 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.7)
5+
public_suffix (>= 2.0.2, < 7.0)
6+
base64 (0.2.0)
7+
bigdecimal (3.1.9)
8+
colorator (1.1.0)
9+
concurrent-ruby (1.3.5)
10+
csv (3.3.4)
11+
em-websocket (0.5.3)
12+
eventmachine (>= 0.12.9)
13+
http_parser.rb (~> 0)
14+
eventmachine (1.2.7)
15+
ffi (1.17.2)
16+
ffi (1.17.2-aarch64-linux-gnu)
17+
ffi (1.17.2-aarch64-linux-musl)
18+
ffi (1.17.2-arm-linux-gnu)
19+
ffi (1.17.2-arm-linux-musl)
20+
ffi (1.17.2-arm64-darwin)
21+
ffi (1.17.2-x86-linux-gnu)
22+
ffi (1.17.2-x86-linux-musl)
23+
ffi (1.17.2-x86_64-darwin)
24+
ffi (1.17.2-x86_64-linux-gnu)
25+
ffi (1.17.2-x86_64-linux-musl)
26+
forwardable-extended (2.6.0)
27+
google-protobuf (4.30.2)
28+
bigdecimal
29+
rake (>= 13)
30+
google-protobuf (4.30.2-aarch64-linux)
31+
bigdecimal
32+
rake (>= 13)
33+
google-protobuf (4.30.2-arm64-darwin)
34+
bigdecimal
35+
rake (>= 13)
36+
google-protobuf (4.30.2-x86-linux)
37+
bigdecimal
38+
rake (>= 13)
39+
google-protobuf (4.30.2-x86_64-darwin)
40+
bigdecimal
41+
rake (>= 13)
42+
google-protobuf (4.30.2-x86_64-linux)
43+
bigdecimal
44+
rake (>= 13)
45+
http_parser.rb (0.8.0)
46+
i18n (1.14.7)
47+
concurrent-ruby (~> 1.0)
48+
jekyll (4.4.1)
49+
addressable (~> 2.4)
50+
base64 (~> 0.2)
51+
colorator (~> 1.0)
52+
csv (~> 3.0)
53+
em-websocket (~> 0.5)
54+
i18n (~> 1.0)
55+
jekyll-sass-converter (>= 2.0, < 4.0)
56+
jekyll-watch (~> 2.0)
57+
json (~> 2.6)
58+
kramdown (~> 2.3, >= 2.3.1)
59+
kramdown-parser-gfm (~> 1.0)
60+
liquid (~> 4.0)
61+
mercenary (~> 0.3, >= 0.3.6)
62+
pathutil (~> 0.9)
63+
rouge (>= 3.0, < 5.0)
64+
safe_yaml (~> 1.0)
65+
terminal-table (>= 1.8, < 4.0)
66+
webrick (~> 1.7)
67+
jekyll-include-cache (0.2.1)
68+
jekyll (>= 3.7, < 5.0)
69+
jekyll-relative-links (0.7.0)
70+
jekyll (>= 3.3, < 5.0)
71+
jekyll-sass-converter (3.1.0)
72+
sass-embedded (~> 1.75)
73+
jekyll-seo-tag (2.8.0)
74+
jekyll (>= 3.8, < 5.0)
75+
jekyll-sitemap (1.4.0)
76+
jekyll (>= 3.7, < 5.0)
77+
jekyll-watch (2.2.1)
78+
listen (~> 3.0)
79+
json (2.10.2)
80+
just-the-docs (0.10.1)
81+
jekyll (>= 3.8.5)
82+
jekyll-include-cache
83+
jekyll-seo-tag (>= 2.0)
84+
rake (>= 12.3.1)
85+
kramdown (2.5.1)
86+
rexml (>= 3.3.9)
87+
kramdown-parser-gfm (1.1.0)
88+
kramdown (~> 2.0)
89+
liquid (4.0.4)
90+
listen (3.9.0)
91+
rb-fsevent (~> 0.10, >= 0.10.3)
92+
rb-inotify (~> 0.9, >= 0.9.10)
93+
mercenary (0.4.0)
94+
pathutil (0.16.2)
95+
forwardable-extended (~> 2.6)
96+
public_suffix (6.0.1)
97+
rake (13.2.1)
98+
rb-fsevent (0.11.2)
99+
rb-inotify (0.11.1)
100+
ffi (~> 1.0)
101+
rexml (3.4.1)
102+
rouge (4.5.1)
103+
safe_yaml (1.0.5)
104+
sass-embedded (1.86.3)
105+
google-protobuf (~> 4.30)
106+
rake (>= 13)
107+
sass-embedded (1.86.3-aarch64-linux-android)
108+
google-protobuf (~> 4.30)
109+
sass-embedded (1.86.3-aarch64-linux-gnu)
110+
google-protobuf (~> 4.30)
111+
sass-embedded (1.86.3-aarch64-linux-musl)
112+
google-protobuf (~> 4.30)
113+
sass-embedded (1.86.3-arm-linux-androideabi)
114+
google-protobuf (~> 4.30)
115+
sass-embedded (1.86.3-arm-linux-gnueabihf)
116+
google-protobuf (~> 4.30)
117+
sass-embedded (1.86.3-arm-linux-musleabihf)
118+
google-protobuf (~> 4.30)
119+
sass-embedded (1.86.3-arm64-darwin)
120+
google-protobuf (~> 4.30)
121+
sass-embedded (1.86.3-riscv64-linux-android)
122+
google-protobuf (~> 4.30)
123+
sass-embedded (1.86.3-riscv64-linux-gnu)
124+
google-protobuf (~> 4.30)
125+
sass-embedded (1.86.3-riscv64-linux-musl)
126+
google-protobuf (~> 4.30)
127+
sass-embedded (1.86.3-x86_64-darwin)
128+
google-protobuf (~> 4.30)
129+
sass-embedded (1.86.3-x86_64-linux-android)
130+
google-protobuf (~> 4.30)
131+
sass-embedded (1.86.3-x86_64-linux-gnu)
132+
google-protobuf (~> 4.30)
133+
sass-embedded (1.86.3-x86_64-linux-musl)
134+
google-protobuf (~> 4.30)
135+
terminal-table (3.0.2)
136+
unicode-display_width (>= 1.1.1, < 3)
137+
unicode-display_width (2.6.0)
138+
webrick (1.9.1)
139+
140+
PLATFORMS
141+
aarch64-linux
142+
aarch64-linux-android
143+
aarch64-linux-gnu
144+
aarch64-linux-musl
145+
arm-linux-androideabi
146+
arm-linux-gnu
147+
arm-linux-gnueabihf
148+
arm-linux-musl
149+
arm-linux-musleabihf
150+
arm64-darwin
151+
riscv64-linux-android
152+
riscv64-linux-gnu
153+
riscv64-linux-musl
154+
ruby
155+
x86-linux
156+
x86-linux-gnu
157+
x86-linux-musl
158+
x86_64-darwin
159+
x86_64-linux
160+
x86_64-linux-android
161+
x86_64-linux-musl
162+
163+
DEPENDENCIES
164+
jekyll (~> 4.4.1)
165+
jekyll-relative-links
166+
jekyll-sitemap
167+
just-the-docs (= 0.10.1)
168+
169+
BUNDLED WITH
170+
2.6.8

docs/_config.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
title: Parley Docs
2+
description: Documentation for Parley.
3+
4+
url: "https://parley-chat.github.io"
5+
baseurl: "/documentation"
6+
permalink: pretty
7+
8+
theme: just-the-docs
9+
color_scheme: dark
10+
heading_anchors: true
11+
12+
callouts:
13+
note:
14+
title: Note
15+
color: blue
16+
17+
defaults:
18+
- scope:
19+
path: ""
20+
type: "pages"
21+
values:
22+
layout: "default"
23+
has_toc: false
24+
25+
plugins:
26+
- jekyll-relative-links
27+
- jekyll-sitemap
28+
29+
relative_links:
30+
enabled: true
31+
collections: true

docs/_sass/custom/custom.scss

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
/* General */
2+
#site-nav {
3+
padding: 1rem 0px;
4+
}
5+
.side-bar {
6+
width: 16.5rem;
7+
max-width: unset;
8+
}
9+
.site-title {
10+
padding: 10px;
11+
}
12+
#top {
13+
max-width: unset;
14+
margin-left: 16.5rem;
15+
margin-right: 0px;
16+
}
17+
18+
/* Tables */
19+
.table-wrapper {
20+
width: fit-content;
21+
}
22+
table {
23+
min-width: 20%;
24+
border-collapse: collapse;
25+
}
26+
td {
27+
background-color: #34313a;
28+
}
29+
30+
/* Callouts */
31+
p.note, blockquote.note {
32+
width: fit-content;
33+
max-width: 100%;
34+
}
35+
36+
/* Mobile */
37+
@media (max-width: 800px) {
38+
.side-bar {
39+
width: unset;
40+
}
41+
#top {
42+
margin-left: 0px;
43+
}
44+
}

0 commit comments

Comments
 (0)