Skip to content

Commit 7985e7a

Browse files
autodeploy (#5)
* fix: issue #4 Signed-off-by: Andriy Kalashnykov <[email protected]> * fix: issue #4 Signed-off-by: Andriy Kalashnykov <[email protected]> * fix: issue #4 Signed-off-by: Andriy Kalashnykov <[email protected]> * fix: issue #4 Signed-off-by: Andriy Kalashnykov <[email protected]> * fix: issue #4 Signed-off-by: Andriy Kalashnykov <[email protected]> * fix: issue #4 Signed-off-by: Andriy Kalashnykov <[email protected]> * fix: issue #4 Signed-off-by: Andriy Kalashnykov <[email protected]> * fix: issue #4 Signed-off-by: Andriy Kalashnykov <[email protected]> * fix: issue #4 Signed-off-by: Andriy Kalashnykov <[email protected]> Signed-off-by: Andriy Kalashnykov <[email protected]>
1 parent db45e63 commit 7985e7a

File tree

9 files changed

+37
-78
lines changed

9 files changed

+37
-78
lines changed

.github/dependabot.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "github-actions"
9+
directory: "/"
10+
schedule:
11+
interval: "daily"

.github/workflows/ci.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: ci
2+
on:
3+
push:
4+
branches:
5+
- 4-autodeploy
6+
- main
7+
jobs:
8+
deploy:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/[email protected]
12+
- uses: actions/[email protected]
13+
with:
14+
python-version: 3.x
15+
- run: pip install mkdocs-material
16+
- run: mkdocs gh-deploy --force

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
site/

.readthedocs.yaml

-8
This file was deleted.

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ User docs for QleetOS.
66

77
Prerequisistes:
88

9-
* [mkdocs](https://www.mkdocs.org/)
9+
* [mkdocs](https://www.mkdocs.org/getting-started/#installation)
10+
* [mkdocs-material theme](https://squidfunk.github.io/mkdocs-material/getting-started/#installation)
1011

1112
Run the server locally:
1213

docs/requirements.in

-4
This file was deleted.

docs/requirements.txt

-63
This file was deleted.

mkdocs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
site_name: QleetOS User Documentation
2-
site_url: https://docs.qleet.io
2+
# site_url: https://qleet.github.io/user-docs/
33
theme:
4-
name: readthedocs
4+
name: material

settings.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"yaml.schemas": {
3+
"https://squidfunk.github.io/mkdocs-material/schema.json": "mkdocs.yml"
4+
}
5+
}

0 commit comments

Comments
 (0)