update blog + bump golang (#108)
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful

### 📖 Summary

- bump used golang version
- use blog section title as slot.
- remove draft post	2
- fix typo
- add faq content

### 📑 Test Plan

 CI pipeline tests (Default)

### 💬 Details

_No response_

### 📚 Additional Notes

_No response_

Reviewed-on: #108
This commit is contained in:
OCram85 2024-06-11 16:07:10 +02:00
parent 72f8494478
commit 04a741bcea
6 changed files with 54 additions and 8 deletions

View File

@ -123,7 +123,7 @@ function instDotNet() {
function instGoLang() {
if [[ -z "$1" ]]; then
GOVERSION="1.21.5"
GOVERSION="1.22.4"
else
GOVERSION="$1"
fi

View File

@ -5,10 +5,12 @@
<template>
<div class="blog-container">
<h1>Blog</h1>
<h2> Featured Articles</h2>
<Posts featured/>
<h2>📰 All Posts</h2>
<Posts/>
<Posts featured>
<h2> Featured Articles</h2>
</Posts>
<Posts>
<h2>📰 All Posts</h2>
</Posts>
</div>
</template>
@ -18,10 +20,11 @@
width: 100%;
max-width: 1280px;
padding: 0 64px;
}
h1, h2, h3 {
h1,
h2,
h3 {
position: relative;
font-weight: 600;
outline: none;

View File

@ -31,6 +31,9 @@
</script>
<template>
<slot v-if="posts.length">
<h2 v-if="posts.length > 0">All Posts</h2>
</slot>
<section class="card-container">
<Post
:image="post.frontmatter.image"

View File

@ -33,7 +33,7 @@ Adds [One Dark Pro](https://open-vsx.org/extension/zhuangtongfa/material-theme)
Adds [vscode-icons](https://open-vsx.org/extension/vscode-icons-team/vscode-icons) extension as default icon theme.
## Referenced Source Filesq
## Referenced Source Files
::: code-group

View File

@ -1 +1,40 @@
---
outline: false
---
# 🤔 FAQs
[[toc]]
## ❓ Questions
### How do I upload already existing files?
You can simply drag & drop existing files from your local browser into the editor tree-view area to upload them.
### Ho do I interact with Arkanum from the integrated terminal?
You can use the the `code-server` command from the integrated terminal sessions like bash or pwsh.
To reuse the existing session / window and open the current location just run `code-server -r .`
> [!WARNING] ⚠️ WARNING
> The command `code-server` is only available as user, but not as root.
### How should I start developing? What are my first steps?
We recommend you take a look at our maintained templates:
- [Baseline](https://gitea.ocram85.com/Templates/Baseline)
### How do I install external resources?
To install external resources you can pass the already set proxy configuration into root a session. Therefore use
the `sudo -E` command. Don't forget the `-E` parameter to preserve the proxy config.
> [!WARNING] ⚠️ WARNING
> Additionally we need to restrict the internet access. This causes us run a proxy with an active whitelist filter.
> So you could end up getting an `http 403` error.
### Whats the root password for my Arkanum instance?
The root password is provided by the container environment variables. Just search for the value of `SUDO_PASSWORD`.

View File

@ -4,6 +4,7 @@ title: 'Working on Arkanum 2.0.0'
tag: 'roadmap'
image: 'screens/screen1.png'
date: '2024-06-06'
#featured: true
---
# Working on Arkanum 2.0