Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ updates:
- "*"

- package-ecosystem: "pip"
directory: "/src/frontend"
directory: "/src/App"
schedule:
interval: "monthly"
commit-message:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docker-build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- demo-v4
- hotfix
paths:
- 'src/frontend/**'
- 'src/App/**'
- 'src/backend/**'
- 'src/mcp_server/**'
- '.github/workflows/docker-build-and-push.yml'
Expand All @@ -31,7 +31,7 @@ on:
- demo-v4
- hotfix
paths:
- 'src/frontend/**'
- 'src/App/**'
- 'src/backend/**'
- 'src/mcp_server/**'
- '.github/workflows/docker-build-and-push.yml'
Expand Down Expand Up @@ -117,8 +117,8 @@ jobs:
- name: Build and optionally push Frontend Docker image
uses: docker/build-push-action@v6
with:
context: ./src/frontend
file: ./src/frontend/Dockerfile
context: ./src/App
file: ./src/App/Dockerfile
push: ${{ env.TAG != 'pullrequest-ignore' }}
tags: |
${{ steps.registry.outputs.ext_registry }}/macaefrontend:${{ env.TAG }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/job-docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ jobs:
env:
DOCKER_BUILD_SUMMARY: false
with:
context: ./src/frontend
file: ./src/frontend/Dockerfile
context: ./src/App
file: ./src/App/Dockerfile
push: true
tags: |
${{ secrets.ACR_TEST_LOGIN_SERVER }}/macaefrontend:${{ steps.generate_docker_tag.outputs.IMAGE_TAG }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"path": "."
},
// {
// "path": "./src/frontend"
// "path": "./src/App"
// },
// {
// "path": "./src/backend"
Expand Down
2 changes: 1 addition & 1 deletion azure_custom.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
remoteBuild: true

frontend:
project: ./src/frontend
project: ./src/App
language: py
host: appservice
dist: ./dist
Expand Down
10 changes: 5 additions & 5 deletions docs/LocalDevelopmentSetup.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Multi-Agent-Custom-Automation-Engine-Solution-Accelerator/ ← Repository roo
│ │ ├── .venv/ ← Virtual environment
│ │ └── .env ← Backend config file
│ │ └── app.py ← Backend Entry Point
│ ├── frontend/ ← cd src/frontend
│ ├── App/ ← cd src/App
│ │ ├── node_modules/ ← npm dependencies
│ │ ├── .venv/ ← Virtual environment
│ │ ├── frontend_server.py ← Frontend entry point
Expand All @@ -60,7 +60,7 @@ cd path/to/Multi-Agent-Custom-Automation-Engine-Solution-Accelerator
This project uses Backend `.env` file in Backend directory with different configuration requirements:

- **Backend**: `src/backend/.env`
<!-- - **Frontend**: `src/frontend.env`
<!-- - **Frontend**: `src/App.env`
- **MCP Server**: `src/mcp_sevrer/.env` -->


Expand Down Expand Up @@ -189,7 +189,7 @@ Create `.vscode/settings.json` and copy the following JSON:
},
{
"name": "Frontend",
"path": "./src/frontend"
"path": "./src/App"
}
]
}
Expand Down Expand Up @@ -443,13 +443,13 @@ python mcp_server.py --transport streamable-http --host 0.0.0.0 --port 9000

> **📋 Terminal Reminder**: Open a **third dedicated terminal window (Terminal 3)** for the Frontend. Keep Terminals 1 (Backend) and 2 (MCP Server) running. All commands assume you start from the **repository root directory**.

The UI is located under `src/frontend`.
The UI is located under `src/App`.

### 6.1. Navigate to Frontend Directory

```bash
# From repository root
cd src/frontend
cd src/App
```

### 6.2. Install UI Dependencies
Expand Down
2 changes: 1 addition & 1 deletion docs/ManualAzureDeployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ az acr login --name <e.g. macaeacr2t62qyozi76bs>

## Build and push the image

Build the frontend and backend Docker images and push them to your Azure Container Registry. Run the following from the src/backend and the src/frontend directory contexts:
Build the frontend and backend Docker images and push them to your Azure Container Registry. Run the following from the src/backend and the src/App directory contexts:

```sh
az acr build \
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading
Loading