-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: First version of the documentation
include guide, architecture and installation
- Loading branch information
Showing
57 changed files
with
15,969 additions
and
140 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,27 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: Build and deploy documentation | ||
|
||
# Controls when the action will run. | ||
on: | ||
# Triggers the workflow on push or pull request events but only for the main branch | ||
push: | ||
branches: [docs] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
build-and-deploy-docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@master | ||
- name: Build and Deploy | ||
uses: stmh/vuepress-github-actions-deploy@master | ||
env: | ||
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | ||
BUILD_DIR: docs/_site | ||
BUILD_SCRIPT: export FDOCS_HOST=https://scotty.factorial.io && yarn install --ignore-engines && yarn run docs:build | ||
PAGES_CNAME: scotty.factorial.io |
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,5 +1,6 @@ | ||
/target | ||
frontend/node_modules | ||
docs/node_modules | ||
apps/test-nginx-creation | ||
/apps/test-nginx | ||
apps/cd-with-db/ | ||
|
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,32 @@ | ||
import config from "@factorial/docs/config.js"; | ||
|
||
export default function (defaultConfig) { | ||
return config(defaultConfig, { | ||
projectName: "Scotty", | ||
input: "./content", | ||
output: "./_site", | ||
githubUrl: "https://github.com/factorial-io/scotty", | ||
openSource: true, | ||
heroImage: { | ||
src: "/assets/hero.png", | ||
width: 720, | ||
height: 600, | ||
}, | ||
logo: { | ||
src: "/assets/logo.svg", | ||
width: 115, | ||
height: 30, | ||
}, | ||
footerLogo: { | ||
src: "/assets/logo-white.svg", | ||
width: 115, | ||
height: 30, | ||
}, | ||
menu: [ | ||
"guide", | ||
"architecture", | ||
"installation", | ||
"changelog", | ||
], | ||
}); | ||
} |
Oops, something went wrong.