-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OPSEXP-2621 Generate documentation website with jekyll (#1144)
Co-authored-by: Giovanni Toraldo <giovanni.toraldo@hyland.com>
- Loading branch information
Showing
46 changed files
with
522 additions
and
359 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Publish docs | ||
|
||
permissions: | ||
contents: write | ||
pages: write | ||
id-token: write | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- "docs/**" | ||
- ".github/workflows/docs.yml" | ||
pull_request: | ||
branches: | ||
- master | ||
paths: | ||
- "docs/**" | ||
- ".github/workflows/docs.yml" | ||
|
||
jobs: | ||
publish: | ||
uses: Alfresco/jekyll-build-tools/.github/workflows/jekyll-publish.yml@main | ||
with: | ||
working-directory: . | ||
publish: ${{ github.event_name == 'push' && github.ref_name == 'master'}} | ||
validate-html: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,3 +35,5 @@ hs_err_pid* | |
# updatecli workflow | ||
alfresco-updatecli | ||
merged.yaml | ||
|
||
_site |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
--- | ||
default: true | ||
MD013: false | ||
MD025: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.1.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem "jekyll", "~> 4.3.3" | ||
gem "just-the-docs", "0.8.1" | ||
gem "jekyll-relative-links" | ||
gem "html-proofer" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
title: ACS Deployment Documentation | ||
description: User documentation for deploying Alfresco Content Services | ||
theme: just-the-docs | ||
color_scheme: alfresco | ||
|
||
url: https://alfresco.github.io | ||
|
||
aux_links: | ||
Docs: https://docs.alfresco.com/ | ||
GitHub Repository: https://github.com/Alfresco/acs-deployment | ||
|
||
aux_links_new_tab: true | ||
|
||
gh_edit_link: true | ||
gh_edit_link_text: "Improve this page on GitHub" | ||
gh_edit_repository: https://github.com/Alfresco/acs-deployment | ||
gh_edit_branch: master | ||
gh_edit_source: . | ||
gh_edit_view_mode: edit | ||
|
||
logo: "docs/images/hyland-alfresco-logos.png" | ||
favicon_ico: "docs/images/favicon.ico" | ||
|
||
defaults: | ||
# apply the default layout to all markdown pages | ||
- scope: | ||
path: "*" | ||
values: | ||
layout: default | ||
render_with_liquid: false | ||
|
||
exclude: | ||
- Brewfile | ||
- '*/ci/*' | ||
- Gemfile | ||
- Gemfile.lock | ||
- '*.yaml' | ||
- '*/Chart.lock' | ||
- '*.tgz' | ||
- '*/NOTES.txt' | ||
- README.md | ||
- LICENSE | ||
|
||
plugins: | ||
- jekyll-relative-links | ||
|
||
mermaid: | ||
version: "10.9.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<style> | ||
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap') | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
$link-color: #3273dc; | ||
$body-font-family: "Inter", sans-serif; | ||
|
||
$font-size-5: 0.88rem; | ||
|
||
.main-content { | ||
color: #212328; | ||
font-weight: 300; | ||
} | ||
|
||
td { | ||
word-wrap: anywhere; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: Docker Compose | ||
has_children: true | ||
--- | ||
|
||
This section contains available guides for docker-compose deployment |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.