-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: zero scale nomad runners (#50)
fix: add tailscale and cloudflare icons as components chore: add tailscale and cloudflare icons feat(post): add post with runners on demand WIP post style: add cloudflare logo feat(js): add mermaid js for diagrams style: import nord theme chore: unset theme color style: apply scsslint to initialize chore: add main style css fix(post): add workflow diagram fix(post): add architecture and deployment sections in github runners post fix(post): add section on deployment for github runners post fix(post): finish github runners on demand post --------- Signed-off-by: Bruce Becker <[email protected]>
- Loading branch information
1 parent
d66bfab
commit abb8a93
Showing
16 changed files
with
2,639 additions
and
31 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
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
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
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 |
---|---|---|
|
@@ -9,3 +9,14 @@ | |
<!-- Cloudflare Web Analytics --><script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "d10d21ccb794430e9db594f7a7830939"}'></script><!-- End Cloudflare Web Analytics --> | ||
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> | ||
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> | ||
|
||
<script src="https://unpkg.com/[email protected]/dist/mermaid.min.js"></script> | ||
<script> | ||
$(document).ready(function () { | ||
mermaid.initialize({ | ||
startOnLoad: true, | ||
theme: "forest", | ||
}); | ||
window.mermaid.init(undefined, document.querySelectorAll('.language-mermaid')); | ||
}); | ||
</script> |
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,10 @@ | ||
<script src="https://unpkg.com/[email protected]/dist/mermaid.min.js"></script> | ||
<script> | ||
$(document).ready(function () { | ||
mermaid.initialize({ | ||
startOnLoad:true, | ||
theme: "default", | ||
}); | ||
window.mermaid.init(undefined, document.querySelectorAll('.language-mermaid')); | ||
}); | ||
</script> |
Oops, something went wrong.