Skip to content

Commit 9d6652e

Browse files
Simplify Guide folder structure and Update theme (#286)
* chore: add flake and update * clear old unused files * chore: move over a beginning template for up-to-date docs * chore: add parent to api pages - rename getting started to index - update code fences with languages * build: Add netlify.toml for build configuration * chore: fix gemfile * chore: fix config * chore: finish adding code fences to api docks * chore: re-add index * chore: move interviews and hide page from sidebar * chore: remove about * chore: move over tidal tools pages * chore: move index to under pages * chore: hide interview best practices * fix: title and add gh links * chore: migrate user pages * chore: slight restructure * feat: Features and Integration subsections to Accelerator Guides * chore: fix errant uses of includes * chore: rework file layout to match directory structure * chore: remove superfluous files * fix: move guides under assess heading * fix: move guides under discover heading * fix: move guides under introductions * fix: move guides under plan heading * chore: remove backup documents * chore: address feedback from sam including broken links * chore: add layout for pages * chore: add page layouts to guides aren't keyboard macros great? * chore: disable download link until we regenerate books * fix: add title to landing page * chore: remove backup file
1 parent b7ffdd3 commit 9d6652e

File tree

136 files changed

+879
-16737
lines changed

Some content is hidden

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

136 files changed

+879
-16737
lines changed

.gitignore

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
_site/
2-
.sass-cache/
1+
_site
2+
.sass-cache
33
.jekyll-metadata
4-
_pdf
5-
.DS_Store
6-
.idea

404.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
layout: default
3+
---
4+
5+
<style type="text/css" media="screen">
6+
.container {
7+
margin: 10px auto;
8+
max-width: 600px;
9+
text-align: center;
10+
}
11+
h1 {
12+
margin: 30px 0;
13+
font-size: 4em;
14+
line-height: 1;
15+
letter-spacing: -1px;
16+
}
17+
</style>
18+
19+
<div class="container">
20+
<h1>404</h1>
21+
22+
<p><strong>Page not found :(</strong></p>
23+
<p>The requested page could not be found.</p>
24+
</div>

404.md

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

Dockerfile

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

Gemfile

Lines changed: 32 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,42 @@
11
source "https://rubygems.org"
22

3-
# Pinning problematic gems to compatible versions
4-
gem "commonmarker", "~> 0.23.8"
5-
gem "unf_ext", "~> 0.0.7.7"
6-
gem "eventmachine", "~> 1.2.5"
7-
gem "http_parser.rb", "~> 0.6.0"
8-
gem "racc", "~> 1.5.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.10.0"
912

13+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
14+
gem "minima", "~> 2.0"
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!
1021
group :jekyll_plugins do
11-
gem 'github-pages', '~> 232'
22+
gem 'github-pages'
1223
gem 'jekyll-feed'
1324
gem 'jekyll-redirect-from'
1425
gem 'jekyll-sitemap'
1526
end
1627

28+
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
29+
# and associated library.
30+
platforms :mingw, :x64_mingw, :mswin do
31+
gem "tzinfo", ">= 1", "< 3"
32+
gem "tzinfo-data"
33+
end
34+
35+
# Performance-booster for watching directories on Windows
36+
gem "wdm", "~> 0.1.0", :install_if => Gem.win_platform?
37+
38+
# kramdown v2 ships without the gfm parser by default. If you're using
39+
# kramdown v1, comment out this line.
40+
gem "kramdown-parser-gfm"
1741

42+
gem "just-the-docs", "~> 0.10.1"

Gemfile.lock

Lines changed: 95 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,61 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
activesupport (7.0.7.2)
5-
concurrent-ruby (~> 1.0, >= 1.0.2)
4+
activesupport (8.0.2)
5+
base64
6+
benchmark (>= 0.3)
7+
bigdecimal
8+
concurrent-ruby (~> 1.0, >= 1.3.1)
9+
connection_pool (>= 2.2.5)
10+
drb
611
i18n (>= 1.6, < 2)
12+
logger (>= 1.4.2)
713
minitest (>= 5.1)
8-
tzinfo (~> 2.0)
9-
addressable (2.8.1)
10-
public_suffix (>= 2.0.2, < 6.0)
14+
securerandom (>= 0.3)
15+
tzinfo (~> 2.0, >= 2.0.5)
16+
uri (>= 0.13.1)
17+
addressable (2.8.7)
18+
public_suffix (>= 2.0.2, < 7.0)
19+
base64 (0.2.0)
20+
benchmark (0.4.0)
21+
bigdecimal (3.1.9)
1122
coffee-script (2.4.1)
1223
coffee-script-source
1324
execjs
1425
coffee-script-source (1.12.2)
1526
colorator (1.1.0)
16-
commonmarker (0.23.10)
17-
concurrent-ruby (1.2.2)
27+
commonmarker (0.23.11)
28+
concurrent-ruby (1.3.5)
29+
connection_pool (2.5.3)
1830
csv (3.3.4)
19-
dnsruby (1.61.9)
20-
simpleidn (~> 0.1)
31+
dnsruby (1.72.4)
32+
base64 (~> 0.2.0)
33+
logger (~> 1.6.5)
34+
simpleidn (~> 0.2.1)
35+
drb (2.2.1)
2136
em-websocket (0.5.3)
2237
eventmachine (>= 0.12.9)
2338
http_parser.rb (~> 0)
2439
ethon (0.16.0)
2540
ffi (>= 1.15.0)
2641
eventmachine (1.2.7)
27-
execjs (2.8.1)
28-
faraday (2.7.4)
29-
faraday-net_http (>= 2.0, < 3.1)
30-
ruby2_keywords (>= 0.0.4)
31-
faraday-net_http (3.0.2)
32-
ffi (1.15.5)
42+
execjs (2.10.0)
43+
faraday (2.13.1)
44+
faraday-net_http (>= 2.0, < 3.5)
45+
json
46+
logger
47+
faraday-net_http (3.4.0)
48+
net-http (>= 0.5.0)
49+
ffi (1.17.2-aarch64-linux-gnu)
50+
ffi (1.17.2-aarch64-linux-musl)
51+
ffi (1.17.2-arm-linux-gnu)
52+
ffi (1.17.2-arm-linux-musl)
53+
ffi (1.17.2-arm64-darwin)
54+
ffi (1.17.2-x86_64-darwin)
55+
ffi (1.17.2-x86_64-linux-gnu)
56+
ffi (1.17.2-x86_64-linux-musl)
3357
forwardable-extended (2.6.0)
34-
gemoji (3.0.1)
58+
gemoji (4.1.0)
3559
github-pages (232)
3660
github-pages-health-check (= 1.18.2)
3761
jekyll (= 3.10.0)
@@ -87,8 +111,8 @@ GEM
87111
html-pipeline (2.14.3)
88112
activesupport (>= 2)
89113
nokogiri (>= 1.4)
90-
http_parser.rb (0.6.0)
91-
i18n (1.14.1)
114+
http_parser.rb (0.8.0)
115+
i18n (1.14.7)
92116
concurrent-ruby (~> 1.0)
93117
jekyll (3.10.0)
94118
addressable (~> 2.4)
@@ -200,38 +224,59 @@ GEM
200224
gemoji (>= 3, < 5)
201225
html-pipeline (~> 2.2)
202226
jekyll (>= 3.0, < 5.0)
227+
json (2.11.3)
228+
just-the-docs (0.10.1)
229+
jekyll (>= 3.8.5)
230+
jekyll-include-cache
231+
jekyll-seo-tag (>= 2.0)
232+
rake (>= 12.3.1)
203233
kramdown (2.4.0)
204234
rexml
205235
kramdown-parser-gfm (1.1.0)
206236
kramdown (~> 2.0)
207237
liquid (4.0.4)
208-
listen (3.8.0)
238+
listen (3.9.0)
209239
rb-fsevent (~> 0.10, >= 0.10.3)
210240
rb-inotify (~> 0.9, >= 0.9.10)
241+
logger (1.6.6)
211242
mercenary (0.3.6)
212-
mini_portile2 (2.8.8)
213243
minima (2.5.1)
214244
jekyll (>= 3.5, < 5.0)
215245
jekyll-feed (~> 0.9)
216246
jekyll-seo-tag (~> 2.1)
217-
minitest (5.19.0)
218-
nokogiri (1.18.8)
219-
mini_portile2 (~> 2.8.2)
247+
minitest (5.25.5)
248+
net-http (0.6.0)
249+
uri
250+
nokogiri (1.18.8-aarch64-linux-gnu)
251+
racc (~> 1.4)
252+
nokogiri (1.18.8-aarch64-linux-musl)
253+
racc (~> 1.4)
254+
nokogiri (1.18.8-arm-linux-gnu)
255+
racc (~> 1.4)
256+
nokogiri (1.18.8-arm-linux-musl)
257+
racc (~> 1.4)
258+
nokogiri (1.18.8-arm64-darwin)
259+
racc (~> 1.4)
260+
nokogiri (1.18.8-x86_64-darwin)
261+
racc (~> 1.4)
262+
nokogiri (1.18.8-x86_64-linux-gnu)
263+
racc (~> 1.4)
264+
nokogiri (1.18.8-x86_64-linux-musl)
220265
racc (~> 1.4)
221266
octokit (4.25.1)
222267
faraday (>= 1, < 3)
223268
sawyer (~> 0.9)
224269
pathutil (0.16.2)
225270
forwardable-extended (~> 2.6)
226-
public_suffix (4.0.7)
227-
racc (1.5.2)
271+
public_suffix (5.1.1)
272+
racc (1.8.1)
273+
rake (13.2.1)
228274
rb-fsevent (0.11.2)
229-
rb-inotify (0.10.1)
275+
rb-inotify (0.11.1)
230276
ffi (~> 1.0)
231277
rexml (3.4.1)
232278
rouge (3.30.0)
233-
ruby2_keywords (0.0.5)
234-
rubyzip (2.3.2)
279+
rubyzip (2.4.1)
235280
safe_yaml (1.0.5)
236281
sass (3.7.4)
237282
sass-listen (~> 4.0.0)
@@ -241,33 +286,41 @@ GEM
241286
sawyer (0.9.2)
242287
addressable (>= 2.3.5)
243288
faraday (>= 0.17.3, < 3)
244-
simpleidn (0.2.1)
245-
unf (~> 0.1.4)
289+
securerandom (0.4.1)
290+
simpleidn (0.2.3)
246291
terminal-table (1.8.0)
247292
unicode-display_width (~> 1.1, >= 1.1.1)
248-
typhoeus (1.4.0)
293+
typhoeus (1.4.1)
249294
ethon (>= 0.9.0)
250295
tzinfo (2.0.6)
251296
concurrent-ruby (~> 1.0)
252-
unf (0.1.4)
253-
unf_ext
254-
unf_ext (0.0.7.7)
255297
unicode-display_width (1.8.0)
298+
uri (1.0.3)
299+
wdm (0.1.1)
256300
webrick (1.9.1)
257301

258302
PLATFORMS
259-
ruby
303+
aarch64-linux-gnu
304+
aarch64-linux-musl
305+
arm-linux-gnu
306+
arm-linux-musl
307+
arm64-darwin
308+
x86_64-darwin
309+
x86_64-linux-gnu
310+
x86_64-linux-musl
260311

261312
DEPENDENCIES
262-
commonmarker (~> 0.23.8)
263-
eventmachine (~> 1.2.5)
264-
github-pages (~> 232)
265-
http_parser.rb (~> 0.6.0)
313+
github-pages
314+
jekyll (~> 3.10.0)
266315
jekyll-feed
267316
jekyll-redirect-from
268317
jekyll-sitemap
269-
racc (~> 1.5.2)
270-
unf_ext (~> 0.0.7.7)
318+
just-the-docs (~> 0.10.1)
319+
kramdown-parser-gfm
320+
minima (~> 2.0)
321+
tzinfo (>= 1, < 3)
322+
tzinfo-data
323+
wdm (~> 0.1.0)
271324

272325
BUNDLED WITH
273-
2.6.8
326+
2.6.7

0 commit comments

Comments
 (0)