fix(website): social-link github and more links (#37748)
**Description** <!-- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. --> ⚒️ Fixes # <!--(issue)--> Social link of git is outdated in top right. Constantly on a wrong page. Fix also some other pages. **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [x] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code - [ ] 📜 Documentation Changes **🧪 How Has This Been Tested?** <!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration --> **📃 Notes:** <!-- Please enter any other relevant information here --> **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made changes to the documentation - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [ ] ⬆️ I increased versions for any altered app according to semantic versioning - [x] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or `fix(docs):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._
This commit is contained in:
@@ -75,7 +75,7 @@ export default defineConfig({
|
||||
maxHeadingLevel: 6,
|
||||
},
|
||||
social: {
|
||||
github: "https://github.com/truecharts",
|
||||
github: "https://github.com/trueforge-org",
|
||||
facebook: "https://www.facebook.com/truecharts",
|
||||
"x.com": "https://twitter.com/useTrueCharts",
|
||||
discord: "https://discord.gg/tVsPTHWTtr",
|
||||
@@ -84,7 +84,7 @@ export default defineConfig({
|
||||
patreon: "https://patreon.com/truecharts",
|
||||
},
|
||||
editLink: {
|
||||
baseUrl: "https://github.com/truecharts/public/tree/master/website/",
|
||||
baseUrl: "https://github.com/trueforge-org/truecharts/tree/master/website",
|
||||
},
|
||||
components: {
|
||||
Header: "./src/components/CustomHeader.astro",
|
||||
|
||||
@@ -11,8 +11,8 @@
|
||||
/s/ghs https://github.com/sponsors/truecharts 308
|
||||
|
||||
# other
|
||||
/s/git https://github.com/truecharts 308
|
||||
/s/charts https://github.com/truecharts/charts 308
|
||||
/s/git https://github.com/trueforge-org 308
|
||||
/s/charts https://github.com/trueforge-org/truecharts/tree/master/charts 308
|
||||
/s/shop https://www.etsy.com/shop/TrueCharts 308
|
||||
|
||||
# truecharts
|
||||
|
||||
@@ -14,5 +14,5 @@ Help us improve by fixing the link directly.
|
||||
|
||||
<br />
|
||||
|
||||
Just submit a Pull Request on our [GitHub repository](https://github.com/truecharts/website).
|
||||
Just submit a Pull Request on our [GitHub repository](https://github.com/trueforge-org/truecharts/tree/master/website).
|
||||
Your contributions make our documentation better for everyone!
|
||||
|
||||
@@ -60,7 +60,7 @@ spec:
|
||||
chart:
|
||||
spec:
|
||||
chart: lvm-disk-watcher
|
||||
version: 1.1.0 # Update this with the latest version mentioned in https://github.com/truecharts/charts/blob/master/charts/system/lvm-disk-watcher/Chart.yaml
|
||||
version: 1.1.0
|
||||
sourceRef:
|
||||
kind: HelmRepository
|
||||
name: truecharts
|
||||
|
||||
@@ -34,7 +34,7 @@ that's perfectly fine, however some steps need to be skipped.
|
||||
|
||||
## 2. Downloading ClusterTool
|
||||
|
||||
ClusterTool is available on [GitHub](https://github.com/truecharts/public/releases).
|
||||
ClusterTool is available on [GitHub](https://github.com/trueforge-org/truecharts/releases).
|
||||
Please extract the archive and copy the executable into your `configuration folder`.
|
||||
|
||||
## 3. Initialisation
|
||||
|
||||
@@ -3,7 +3,7 @@ title: Chart.yaml layout
|
||||
---
|
||||
|
||||
At TrueCharts we try to keep some files standardized, this enables us to make changes to these charts in bulk with less risk of mistakes. Chart.yaml is one of these files.
|
||||
In this documentation we will explain the standardized layout options. For an example layout, please see our standard Chart.yaml [template](https://github.com/truecharts/public/blob/master/charts/premium/app-template/Chart.yaml)
|
||||
In this documentation we will explain the standardized layout options. For an example layout, please see our standard Chart.yaml [template](https://github.com/trueforge-org/truecharts/blob/master/charts/premium/app-template/Chart.yaml)
|
||||
|
||||
## Layout Explained
|
||||
|
||||
@@ -44,7 +44,7 @@ annotations:
|
||||
|
||||
In the above description there are a lot of values that are not actually used. Some of those, like `deprecated`, we just set to false. While others, like `annotations` get commented out.
|
||||
|
||||
Please refer to our standard Chart.yaml [template](https://github.com/truecharts/public/blob/master/charts/premium/app-template/Chart.yaml) to see which unused values needs which treatment.
|
||||
Please refer to our standard Chart.yaml [template](https://github.com/trueforge-org/truecharts/blob/master/charts/premium/app-template/Chart.yaml) to see which unused values needs which treatment.
|
||||
|
||||
### Dependencies
|
||||
|
||||
@@ -55,4 +55,4 @@ All other dependencies are expected to be listed in alphabetical order.
|
||||
### Maintainers
|
||||
|
||||
The only maintainer should always be TrueCharts, as the TrueCharts core team is expected to step in if the other maintainers fail to maintain their work.
|
||||
An example of how to list TrueCharts as a maintainer is available in our standard Chart.yaml [template](https://github.com/truecharts/public/blob/master/charts/premium/app-template/Chart.yaml).
|
||||
An example of how to list TrueCharts as a maintainer is available in our standard Chart.yaml [template](https://github.com/trueforge-org/truecharts/blob/master/charts/premium/app-template/Chart.yaml).
|
||||
|
||||
@@ -33,7 +33,7 @@ The first step to contributing is to [fork](https://docs.github.com/en/pull-requ
|
||||
the TrueCharts repository. A fork is like your own copy of the repository that can be modified without affecting the original.
|
||||
You only need to do this once, as the fork can be re-used for all changes you wish to make.
|
||||
|
||||
To create a fork, navigate to the [truecharts/charts repository](https://github.com/truecharts/charts/fork) and press the
|
||||
To create a fork, navigate to the [truecharts/charts repository](https://github.com/trueforge-org/truecharts/fork) and press the
|
||||
Fork button in the upper-right corner.
|
||||
|
||||
On the following page, leave all of the default settings and click **Create Fork**. After a moment, you will presented with the main page of your fork,
|
||||
@@ -197,7 +197,7 @@ You will now notice that your fork on GitHub also has the new branch, along with
|
||||
The final step to integrating your changes is to submit a PR (pull request) to the upstream repository. This is a formal request for the upstream
|
||||
(e.g. TrueCharts) to review your changes and "pull" them into their repository should they be accepted.
|
||||
|
||||
To do so, navigate to the main page of the upstream repository on [GitHub](https://github.com/truecharts/charts). Here, if it hasn't been too long
|
||||
To do so, navigate to the main page of the upstream repository on [GitHub](https://github.com/trueforge-org/truecharts). Here, if it hasn't been too long
|
||||
since you pushed to your remote, you will notice a convenient button for creating a PR based on your topic branch presented to you by GitHub.
|
||||
But just in-case it's not there, this guide will ignore it and demonstrate the slightly longer way.
|
||||
|
||||
|
||||
@@ -81,7 +81,7 @@ We use upstream containers. If the password is not on our website, please refer
|
||||
|
||||
## My Chart application has had an upstream update, but the Chart is not updated yet?
|
||||
|
||||
It can sometimes take a few days for our automation tools to pick up updates, please sit tight. Please only report missed updates via a [GitHub issue](https://github.com/truecharts/containers/issues/new/choose) when 7 days have passed *after the new upstream*container\* has become available.
|
||||
It can sometimes take a few days for our automation tools to pick up updates, please sit tight. Please only report missed updates via a [GitHub issue](https://github.com/trueforge-org/truecharts/issues/new/choose) when 7 days have passed *after the new upstream*container\* has become available.
|
||||
|
||||
## Isn't there more documentation for a chart?
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ We are a dedicated bunch of people, working on Helm Charts and Apps for multiple
|
||||
5. No spamming - No link, text, or ASCII spam; no giant walls of text/links; and no all CAPS posts.
|
||||
6. No NSFW/NSFL content outside of designated channels- This includes your avatar.
|
||||
7. No begging or advertising - This includes soft begging. No referral links. No buying/selling/trading
|
||||
8. Security policy: Discussing security issues or vulnerabilities that haven’t been updated is prohibited in public channels. Please report any CVE or security vulnerabilities in our charts or container mirrors using GitHub -> https://github.com/truecharts/charts/security/advisories/new
|
||||
8. Security policy: Discussing security issues or vulnerabilities that haven’t been updated is prohibited in public channels. Please report any CVE or security vulnerabilities in our charts or container mirrors using GitHub -> https://github.com/trueforge-org/truecharts/security/advisories/new
|
||||
9. Comply to the platform ToS and Community Guidelines
|
||||
|
||||
If you see something against the rules or something that makes you feel unsafe, let the Moderators know or us the contact information under `Enforcement`.
|
||||
|
||||
Reference in New Issue
Block a user