Tim Jones 2 дней назад
Родитель
Сommit
70b495f9ee

+ 1 - 1
.github/workflows/generate-docs.yaml

@@ -35,6 +35,6 @@ jobs:
         run: |
           git config user.name "github-actions"
           git config user.email "github-actions@github.com"
-          git add CommandIndex.md Commands.md
+          git add Shared.Rcl/wwwroot/raw_docs/CommandIndex.md Shared.Rcl/wwwroot/raw_docs/Commands.md
           git commit -m "Update CLI docs" || echo "No changes to commit"
           git push

+ 1 - 1
RackPeek.Domain/RpkConstants.cs

@@ -3,5 +3,5 @@ namespace RackPeek.Domain;
 public static class RpkConstants {
     public const string Version = "v1.4.0";
 
-    public static bool HasGitServices = false;
+    public static bool HasGitServices { get; set; }
 }

+ 0 - 7
docs/development/dev-cheat-sheet.md

@@ -105,13 +105,6 @@ Build Web image (required before running tests):
 
 ```bash
 docker build -t rackpeek:ci -f RackPeek.Web/Dockerfile .
-
-
-docker buildx build \
-  --platform linux/amd64,linux/arm64 \
-  -f ./Dockerfile \
-  -t aptacode/rackpeek-qa:latest \
-  --push ..
 ```
 
 ---

+ 0 - 2
generate-docs.sh

@@ -1,8 +1,6 @@
 #!/usr/bin/env bash
 set -euo pipefail
 
-PROJECT_PATH="."
-OUTPUT_FILE="COMMANDS.md"
 declare -A VISITED
 
 TREE_TEMP=$(mktemp)