-
Notifications
You must be signed in to change notification settings - Fork 0
feat: search, graphs, theme #26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
b89d9fb
ahh quetti graphs
toto04 37f4fb9
launch me off a cliff
toto04 f80c295
graphs!
toto04 5423aa2
fix: broken links
lorenzocorallo 893d887
docs: better getting starter graph (#29)
toto04 56f1756
Merge remote-tracking branch 'origin/main' into search-and-stuff
toto04 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,15 @@ | ||
| { | ||
| // Use IntelliSense to learn about possible attributes. | ||
| // Hover to view descriptions of existing attributes. | ||
| // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
| "version": "0.2.0", | ||
| "configurations": [ | ||
| { | ||
| "type": "node-terminal", | ||
| "name": "Run Script: start", | ||
| "request": "launch", | ||
| "command": "pnpm run start", | ||
| "cwd": "${workspaceFolder}" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or 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 hidden or 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,2 @@ | ||
| label: Getting Started | ||
| position: 2 |
Empty file.
2 changes: 2 additions & 0 deletions
2
docs/infrastructure/02-getting-started/basic-knowledge/_category_.yml
This file contains hidden or 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,2 @@ | ||
| label: Basic Knowledge | ||
| position: 2 |
36 changes: 36 additions & 0 deletions
36
docs/infrastructure/02-getting-started/basic-knowledge/index.md
This file contains hidden or 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,36 @@ | ||
| --- | ||
| title: Basic Knowledge | ||
| --- | ||
| import DocCardList from '@theme/DocCardList'; | ||
|
|
||
| ## Overview | ||
|
|
||
| This section explains how we organized our infrastructure. | ||
|
|
||
| Everything regarding the deployment of apps and services is divided into two repositories: | ||
|
|
||
| - [polinetworkorg/terraform](https://github.com/polinetworkorg/terraform) - Contains the Terraform code to deploy the infrastructure. This defines the resources that are created on Azure, from specific things like KeyVaults, to the Kubernetes cluster itself. | ||
| - [polinetworkorg/polinetwork-cd](https://github.com/polinetworkorg/polinetwork-cd) - Our GitOps repo, contains the manifests that define deployments specific for each app or service. This repository is connected to the ArgoCD instance running on the Kubernetes cluster. | ||
|
|
||
| ```mermaid | ||
| flowchart TD | ||
| subgraph Github | ||
| tf([**terraform**]) | ||
| cd([**polinetwork-cd**]) | ||
| end | ||
| subgraph Azure | ||
| vm[VMs and other resources] | ||
| subgraph k8s[K8S cluster] | ||
| argocd[ArgoCD] | ||
| app@{ shape: processes, label: "Apps / Services" } | ||
| end | ||
| end | ||
|
|
||
| tf -.-> vm | ||
| tf -.-> k8s | ||
| vm <--> k8s | ||
| cd <-.-> argocd --> app | ||
| ``` | ||
|
|
||
| <!-- markdownlint-disable-next-line --> | ||
| <DocCardList /> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...re/02-Tutorials/pipelines/_category_.json → ...getting-started/pipelines/_category_.json
This file contains hidden or 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,6 +1,6 @@ | ||
| { | ||
| "label": "Pipelines", | ||
| "position": 3, | ||
| "position": 2, | ||
| "link": { | ||
| "type": "generated-index" | ||
| } | ||
|
|
||
File renamed without changes.
7 changes: 5 additions & 2 deletions
7
...frastructure/02-Tutorials/pipelines/ci.md → ...ucture/02-getting-started/pipelines/ci.md
This file contains hidden or 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,8 @@ | ||
| --- | ||
| sidebar_position: 1 | ||
| title: CI | ||
| --- | ||
| ## Github Actions | ||
| The first step of our CI processes is the Github Action workflow, in each repository. For example the [Bot Pipeline](https://github.com/PoliNetworkOrg/PoliNetworkBot_CSharp/blob/master/.github/workflows/ci-cd.yaml) | ||
|
|
||
| ## Continuous Integration | ||
|
|
||
| The first step of our CI processes is the Github Action workflow, in each repository. For example the [Bot Pipeline](https://github.com/PoliNetworkOrg/PoliNetworkBot_CSharp/blob/master/.github/workflows/ci-cd.yaml) |
2 changes: 1 addition & 1 deletion
2
docs/infrastructure/02-Tutorials/setup.md → ...nfrastructure/02-getting-started/setup.md
This file contains hidden or 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,5 @@ | ||
| --- | ||
| sidebar_position: 2 | ||
| sidebar_position: 1 | ||
| --- | ||
| # Setup | ||
|
|
||
|
|
||
This file contains hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.