Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
f9a95f3
Update readme and add installation docs
anbraten Feb 27, 2024
aa10bf7
improve docs
anbraten Feb 27, 2024
db9cb6b
update files
anbraten Feb 27, 2024
deabed6
update docs
anbraten Feb 27, 2024
2b471d5
Merge remote-tracking branch 'origin/main' into add-docs
anbraten Feb 27, 2024
16bc295
adjust content
anbraten Feb 27, 2024
1288171
rename to usage
anbraten Feb 27, 2024
74480dd
adjust tagline
anbraten Feb 27, 2024
373892c
fix dead links
anbraten Feb 27, 2024
dfdd82e
fix some installation details
anbraten Feb 27, 2024
99fac44
fix links, cname and no-jekyll
anbraten Feb 27, 2024
a66f629
add headlines
anbraten Feb 27, 2024
0018569
Merge remote-tracking branch 'origin/main' into add-docs
anbraten Feb 28, 2024
245738a
update docs pkg
anbraten Feb 28, 2024
60a4908
Merge remote-tracking branch 'origin/main' into add-docs
anbraten Feb 28, 2024
b41a0bb
update name
anbraten Feb 28, 2024
e73dd6b
update image names
anbraten Feb 28, 2024
a9adb07
remove funding
anbraten Feb 28, 2024
ebd03ef
Merge remote-tracking branch 'origin/main' into add-docs
anbraten Feb 28, 2024
d5c2eef
update version
anbraten Feb 28, 2024
06db8b3
update install conf
anbraten Feb 28, 2024
ba41b27
update changeset conf
anbraten Feb 28, 2024
7900545
add link to dashboard
anbraten Mar 1, 2024
aba49e6
Merge remote-tracking branch 'origin/main' into add-docs
anbraten Mar 1, 2024
bfc8ad3
Merge remote-tracking branch 'origin/main' into add-docs
anbraten Mar 3, 2024
6a47365
update
anbraten Mar 3, 2024
5ffd309
update
anbraten Mar 3, 2024
4c3808d
feat(docs): add ci docs
anbraten Mar 3, 2024
49af526
Merge remote-tracking branch 'origin/main' into add-ci-docs
anbraten Jun 18, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/purple-rice-suffer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@lagoss/ui': minor
---

Updated docs to vitepress, added self-hosting instructions and adjusted README
9 changes: 9 additions & 0 deletions packages/docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,15 @@ export default defineConfig({
// { text: 'Regions', link: '/usage/regions' },
{ text: 'Limits', link: '/usage/limits' },
{ text: 'Security', link: '/usage/security' },
{
text: 'CI',
collapsed: true,
items: [
{ text: 'Github Actions', link: '/ci/github-actions' },
{ text: 'Gitlab CI', link: '/ci/gitlab-ci' },
{ text: 'Woodpecker', link: '/ci/woodpecker' },
],
},
],
},
{
Expand Down
5 changes: 5 additions & 0 deletions packages/docs/content/ci/github-actions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Deploy using Github Actions

https://github.com/lagossapp/github-action/tree/latest

Work in progress ...
3 changes: 3 additions & 0 deletions packages/docs/content/ci/gitlab-ci.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Deploy using Gitlab CI

Work in progress ...
9 changes: 9 additions & 0 deletions packages/docs/content/ci/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Automatic deployment using CI

You can use your existing CI system to automatically deploy your project to lagoss.

Currently following CI systems are supported, but most other systems should work by using the [@lagoss/cli](../cli.md):

- [Github actions](github-actions.md)
- [Gitlab CI](gitlab-ci.md)
- [Woodpecker CI](woodpecker.md)
3 changes: 3 additions & 0 deletions packages/docs/content/ci/woodpecker.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Deploy using Woodpecker CI

Work in progress ...