Skip to content

Commit d0299ae

Browse files
committed
make
1 parent 4bd77c3 commit d0299ae

File tree

119 files changed

+6193
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+6193
-1
lines changed

Diff for: README.md

+14-1

Diff for: dev/Dockerfile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM squidfunk/mkdocs-material
2+
3+
RUN apk add --no-cache --update nodejs npm bash hugo curl
4+
5+
WORKDIR /site
6+
COPY ./package*.json /site/
7+
COPY ./requirements.txt /site/
8+
9+
# Python Dependencies
10+
RUN pip --no-cache-dir install -r requirements.txt
11+
# NodeJS Dependencies
12+
RUN npm install

Diff for: dev/build.sh

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env sh
2+
3+
set -x
4+
5+
IMAGE=${1:-prodguide-dev}
6+
7+
SCRIPT_DIR=$(cd $(dirname $0); pwd -P)
8+
ROOT_DIR=$(cd "${SCRIPT_DIR}/.."; pwd -P)
9+
10+
docker build -t ${IMAGE} -f ${SCRIPT_DIR}/Dockerfile ${ROOT_DIR}

Diff for: dev/clean.sh

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/env sh
2+
3+
NAME=${1:-prodguide-dev}
4+
5+
echo "Cleaning up old container '${NAME}'..."
6+
docker rm "${NAME}" --force 1> /dev/null 2> /dev/null
7+
8+
echo "Finished clean up"

Diff for: dev/entrypoint.sh

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env sh
2+
3+
4+
PORT=${1:-8000}
5+
6+
mkdocs serve --dirtyreload -a "0.0.0.0:${PORT}"
7+
echo "Dev environment running with live reloading enabled. Open http://localhost:${PORT} to see the site"

Diff for: dev/logs.sh

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/usr/bin/env sh
2+
3+
set -x
4+
5+
NAME=${1:-prodguide-dev}
6+
docker logs -f ${NAME}

Diff for: dev/mkdocs.sh

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/sh
2+
3+
PORT=${1:-8000}
4+
5+
mkdocs serve --config-file "./mkdocs.yml" --livereload -a 127.0.0.1:${PORT}

Diff for: dev/run.sh

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/env sh
2+
3+
set -x
4+
5+
NAME=${1:-prodguide-dev}
6+
PORT=${2:-8000}
7+
IMAGE=${3:-prodguide-dev}
8+
9+
docker run --name "${NAME}" -d -p "${PORT}:${PORT}" -v "${PWD}:/site" ${IMAGE} serve --dirtyreload --dev-addr=0.0.0.0:${PORT}
10+
echo "Dev environment running with live reloading enabled. Open http://localhost:${PORT} to see the site"
11+
echo "For live logs run:"
12+
echo "docker logs -f ${NAME}"

Diff for: dev/test.sh

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/usr/bin/env sh
2+
3+
set -x
4+
5+
NAME=${1:-prodguide-dev}
6+
PORT=${2:-8000}
7+
IMAGE=${3:-prodguide-dev}
8+
9+
docker run --rm -v "${PWD}:/site" -it --entrypoint "" ${IMAGE} ./build.sh

Diff for: docs/.DS_Store

8 KB
Binary file not shown.

Diff for: docs/assets/.DS_Store

8 KB
Binary file not shown.

Diff for: docs/assets/RAG.png

42.6 KB

Diff for: docs/assets/integrations/actions-created-by-json.png

86.3 KB

Diff for: docs/assets/integrations/add-discovery-extension.png

75.5 KB

Diff for: docs/assets/integrations/add-watsonx-extension.png

105 KB

Diff for: docs/assets/integrations/build-custom-extension.png

168 KB
76.6 KB
92.3 KB

Diff for: docs/assets/integrations/config-search-action.png

157 KB
78.4 KB
84.7 KB

Diff for: docs/assets/integrations/discovery-credentials.png

138 KB
127 KB

Diff for: docs/assets/integrations/discovery-project-id.png

35 KB

Diff for: docs/assets/integrations/get-cloud-api-key.png

28.4 KB

Diff for: docs/assets/integrations/get-watsonx-project-id.png

58.8 KB

Diff for: docs/assets/integrations/go-to-action-settings.png

226 KB

Diff for: docs/assets/integrations/go-to-actions.png

74.6 KB

Diff for: docs/assets/integrations/go-to-integrations.png

141 KB

Diff for: docs/assets/integrations/go-to-resource-list.png

397 KB

Diff for: docs/assets/integrations/go-to-variables.png

88.3 KB
155 KB

Diff for: docs/assets/integrations/import-watsonx-openapi.png

166 KB
87.6 KB

Diff for: docs/assets/integrations/set-watsonx-project-id.png

63.4 KB

Diff for: docs/assets/integrations/upload-actions-json.png

72.4 KB

Diff for: docs/assets/watson-white-logo.jpeg

10.8 KB

Diff for: docs/assets/watsonx-assistant/Assistant1.png

409 KB

Diff for: docs/assets/watsonx-assistant/Assistant10.png

235 KB

Diff for: docs/assets/watsonx-assistant/Assistant11.png

258 KB

Diff for: docs/assets/watsonx-assistant/Assistant12.png

261 KB

Diff for: docs/assets/watsonx-assistant/Assistant13.png

269 KB

Diff for: docs/assets/watsonx-assistant/Assistant14.png

290 KB

Diff for: docs/assets/watsonx-assistant/Assistant15.png

333 KB

Diff for: docs/assets/watsonx-assistant/Assistant16.png

308 KB

Diff for: docs/assets/watsonx-assistant/Assistant17.png

287 KB

Diff for: docs/assets/watsonx-assistant/Assistant18.png

333 KB

Diff for: docs/assets/watsonx-assistant/Assistant19.png

239 KB

Diff for: docs/assets/watsonx-assistant/Assistant2.png

160 KB

Diff for: docs/assets/watsonx-assistant/Assistant20.png

241 KB

Diff for: docs/assets/watsonx-assistant/Assistant21.png

245 KB

Diff for: docs/assets/watsonx-assistant/Assistant22.png

330 KB

Diff for: docs/assets/watsonx-assistant/Assistant23.png

92.1 KB

Diff for: docs/assets/watsonx-assistant/Assistant24.png

115 KB

Diff for: docs/assets/watsonx-assistant/Assistant25.png

151 KB

Diff for: docs/assets/watsonx-assistant/Assistant3.png

408 KB

Diff for: docs/assets/watsonx-assistant/Assistant4.png

150 KB

Diff for: docs/assets/watsonx-assistant/Assistant5.png

434 KB

Diff for: docs/assets/watsonx-assistant/Assistant6.png

582 KB

Diff for: docs/assets/watsonx-assistant/Assistant7.png

165 KB

Diff for: docs/assets/watsonx-assistant/Assistant8.png

252 KB

Diff for: docs/assets/watsonx-assistant/Assistant9.png

228 KB

Diff for: docs/assets/watsonx-assistant/create-assistant.png

74.6 KB
147 KB

Diff for: docs/assets/watsonx-assistant/launch-wa.png

90.2 KB
107 KB

Diff for: docs/assets/watsonx-assistant/preview-assistant.png

582 KB

Diff for: docs/generative-ai/generative-ai.md

+33

Diff for: docs/generative-ai/watsonx.md

+39

Diff for: docs/index.md

+19

Diff for: docs/integrations/integrations.md

+194

Diff for: docs/stylesheets/index.css

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
:root > * {
2+
--md-primary-fg-color: #0f62fe;
3+
--md-footer-bg-color: #0f62fe;
4+
}

Diff for: docs/watson-discovery/.DS_Store

6 KB
Binary file not shown.

0 commit comments

Comments
 (0)