Skip to content

Commit 5d18844

Browse files
Add Agentic app (#1382)
* Add Agentic app * Update Dockerfile * Update DockerHub credentials --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent c0404c8 commit 5d18844

File tree

121 files changed

+7142
-118
lines changed

Some content is hidden

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

121 files changed

+7142
-118
lines changed

.github/workflows/docker-image.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ jobs:
3131
- name: Login to Docker Hub
3232
uses: docker/login-action@v3
3333
with:
34-
username: ${{ secrets.DOCKERHUB_DIGMAAI_USERNAME }}
35-
password: ${{ secrets.DOCKERHUB_DIGMAAI_TOKEN }}
34+
username: ${{ secrets.DOCKERHUB_USERNAME }}
35+
password: ${{ secrets.DOCKERHUB_TOKEN }}
3636

3737
- name: Docker meta
3838
id: metadata
3939
uses: docker/metadata-action@v5
4040
with:
41-
images: digmaai/digma-ui
41+
images: digmatic/digma-ui
4242
tags: |
4343
type=ref,event=branch
4444
type=ref,event=pr

.vscode/launch.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "chrome",
9+
"request": "launch",
10+
"name": "Open Admin in Chrome",
11+
"url": "http://localhost:3000/admin/",
12+
"webRoot": "${workspaceFolder}"
13+
},
14+
{
15+
"type": "chrome",
16+
"request": "launch",
17+
"name": "Open Agentic in Chrome",
18+
"url": "http://localhost:3000/agentic/",
19+
"webRoot": "${workspaceFolder}"
20+
}
21+
]
22+
}

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"cSpell.words": [
3+
"agentic",
34
"borderless",
45
"checkmark",
56
"digma",

Dockerfile

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
FROM nginx:1.27.2
1+
FROM nginx:1.27.3
22

3-
COPY ./dist/ /usr/share/nginx/html/
4-
COPY ./nginx.conf.template /etc/nginx/conf.d/default.conf.template
5-
RUN rm /usr/share/nginx/html/index.html
6-
7-
CMD ["/bin/sh" , "-c" , "cp /etc/nginx/conf.d/default.conf.template /etc/nginx/conf.d/default.conf && exec nginx -g 'daemon off;'"]
3+
COPY ./dist/ /app/

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ To set environment variables use .env file
4848

4949
| Name | Type | Default | Description |
5050
| ----------------- | ------ | ------- | --------------------------------------------------------- |
51+
| PORT | number | 3000 | Port (for dev server) |
5152
| UI_BASE_URL | string | - | Base URL to proxy requests to ingress (for dev server) |
5253
| JAEGER_API_PATH | string | - | URL path to proxy requests to Jaeger UI (for dev server ) |
5354
| API_BASE_URL | string | - | Base URL to proxy Digma API requests (for dev server) |

apps.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ export const appData: AppData = {
77
entry: path.resolve(__dirname, "./src/containers/Admin/index.tsx"),
88
platforms: ["web"]
99
},
10+
agentic: {
11+
entry: path.resolve(__dirname, "./src/containers/Agentic/index.tsx"),
12+
platforms: ["web"]
13+
},
1014
dashboard: {
1115
entry: path.resolve(__dirname, "./src/containers/Dashboard/index.tsx"),
1216
environmentVariables: ["dashboardEnvironment"],

nginx.conf.template

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)