Skip to content

Commit 9af260a

Browse files
Revert PR #768: UI refactoring
1 parent 2fafeb4 commit 9af260a

File tree

111 files changed

+3303
-8511
lines changed

Some content is hidden

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

111 files changed

+3303
-8511
lines changed

.coverage

-52 KB
Binary file not shown.

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ updates:
3535
# npm dependencies - grouped
3636
- package-ecosystem: "npm"
3737
directories:
38-
- "/src/App"
39-
- "/src/App/server"
38+
- "/src/app/frontend"
39+
- "/src/app/frontend-server"
4040
schedule:
4141
interval: "monthly"
4242
target-branch: "dependabotchanges"

.github/workflows/docker-build.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ on:
88
- demo
99
paths:
1010
- 'src/backend/**'
11-
- 'src/App/**'
12-
- 'src/App/server/**'
13-
- 'src/App/WebApp.Dockerfile'
14-
- 'src/App/.dockerignore'
11+
- 'src/app/frontend/**'
12+
- 'src/app/frontend-server/**'
13+
- '.github/workflows/docker-build.yml'
14+
pull_request:
1515
types:
1616
- opened
1717
- ready_for_review
@@ -23,10 +23,8 @@ on:
2323
- demo
2424
paths:
2525
- 'src/backend/**'
26-
- 'src/App/**'
27-
- 'src/App/server/**'
28-
- 'src/App/WebApp.Dockerfile'
29-
- 'src/App/.dockerignore'
26+
- 'src/app/frontend/**'
27+
- 'src/app/frontend-server/**'
3028
- '.github/workflows/docker-build.yml'
3129
workflow_dispatch:
3230

@@ -90,8 +88,8 @@ jobs:
9088
- name: Build and Push Docker Image for Frontend Server
9189
uses: docker/build-push-action@v6
9290
with:
93-
context: ./src/App
94-
file: ./src/App/WebApp.Dockerfile
91+
context: ./src/app
92+
file: ./src/app/WebApp.Dockerfile
9593
push: ${{ github.ref_name == 'main' || github.ref_name == 'dev' || github.ref_name == 'demo' || github.ref_name == 'dependabotchanges' }}
9694
tags: |
9795
${{ secrets.ACR_LOGIN_SERVER || 'acrlogin.azurecr.io' }}/content-gen-app:${{ steps.determine_tag.outputs.tagname }}

.github/workflows/job-docker-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ jobs:
6565
env:
6666
DOCKER_BUILD_SUMMARY: false
6767
with:
68-
context: ./src/App
69-
file: ./src/App/WebApp.Dockerfile
68+
context: ./src/app
69+
file: ./src/app/WebApp.Dockerfile
7070
push: true
7171
tags: |
7272
${{ secrets.ACR_TEST_LOGIN_SERVER }}/content-gen-app:${{ steps.generate_docker_tag.outputs.AZURE_ENV_IMAGE_TAG }}

.gitignore

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ eggs/
3636
*.swo
3737

3838
# Node
39-
/src/App/node_modules/
40-
/src/App/server/node_modules/
41-
/src/App/server/static/
42-
/src/App/server/*.zip
39+
/src/app/frontend/node_modules/
40+
/src/app/frontend-server/node_modules/
41+
/src/app/frontend-server/static/
42+
/src/app/frontend-server/*.zip
4343
node_modules/
4444

4545
# Build output
46-
/src/App/static/
47-
/src/App/dist/
46+
/src/app/static/
47+
/src/app/frontend/dist/
4848

4949
# Logs
5050
*.log

0 commit comments

Comments
 (0)