Skip to content

Commit 3f789eb

Browse files
authored
feat(ui): rename application from LFX PCC to LFX One (#87)
1 parent 01b1f77 commit 3f789eb

File tree

283 files changed

+280
-280
lines changed

Some content is hidden

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

283 files changed

+280
-280
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ jobs:
4646
tags: |
4747
type=raw,value=development
4848
labels: |
49-
org.opencontainers.image.title=LFX PCC UI
50-
org.opencontainers.image.description=Linux Foundation LFX Project Control Center UI application
49+
org.opencontainers.image.title=LFX One UI
50+
org.opencontainers.image.description=Linux Foundation LFX One UI application
5151
org.opencontainers.image.vendor=The Linux Foundation
5252
org.opencontainers.image.licenses=MIT
5353
org.opencontainers.image.documentation=https://github.com/${{ github.repository }}/blob/main/README.md

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ jobs:
4949
tags: |
5050
type=ref,event=pr,prefix=ui-pr-
5151
labels: |
52-
org.opencontainers.image.title=LFX PCC UI
53-
org.opencontainers.image.description=Linux Foundation LFX Project Control Center UI application
52+
org.opencontainers.image.title=LFX One UI
53+
org.opencontainers.image.description=Linux Foundation LFX One UI application
5454
org.opencontainers.image.vendor=The Linux Foundation
5555
org.opencontainers.image.licenses=MIT
5656
org.opencontainers.image.documentation=https://github.com/${{ github.repository }}/blob/main/README.md

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ jobs:
6565
type=semver,pattern={{version}}
6666
type=semver,pattern={{major}}.{{minor}}
6767
labels: |
68-
org.opencontainers.image.title=LFX PCC UI
69-
org.opencontainers.image.description=Linux Foundation LFX Project Control Center UI application
68+
org.opencontainers.image.title=LFX One UI
69+
org.opencontainers.image.description=Linux Foundation LFX One UI application
7070
org.opencontainers.image.vendor=The Linux Foundation
7171
org.opencontainers.image.licenses=MIT
7272
org.opencontainers.image.documentation=https://github.com/${{ github.repository }}/blob/main/README.md

.github/workflows/e2e-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ jobs:
237237

238238
- name: Create Playwright auth directory
239239
if: steps.validate-secrets.outputs.can_run_tests == 'true'
240-
working-directory: apps/lfx-pcc
240+
working-directory: apps/lfx-one
241241
run: mkdir -p playwright/.auth
242242

243243
- name: Build the application
@@ -247,7 +247,7 @@ jobs:
247247
- name: Run E2E tests (All browsers)
248248
id: run-tests-all
249249
if: ${{ inputs.browser == 'all' && steps.validate-secrets.outputs.can_run_tests == 'true' }}
250-
working-directory: apps/lfx-pcc
250+
working-directory: apps/lfx-one
251251
continue-on-error: true
252252
run: |
253253
if [ -n "$TEST_USERNAME" ] && [ -n "$TEST_PASSWORD" ]; then
@@ -265,7 +265,7 @@ jobs:
265265
266266
- name: Run E2E tests (Specific browser)
267267
if: ${{ inputs.browser != 'all' && steps.validate-secrets.outputs.can_run_tests == 'true' }}
268-
working-directory: apps/lfx-pcc
268+
working-directory: apps/lfx-one
269269
run: |
270270
if [ -n "$TEST_USERNAME" ] && [ -n "$TEST_PASSWORD" ]; then
271271
echo "🔐 Running authenticated E2E tests on ${{ inputs.browser }}"
@@ -296,7 +296,7 @@ jobs:
296296
- name: Generate test results summary
297297
id: test-results
298298
if: always()
299-
working-directory: apps/lfx-pcc
299+
working-directory: apps/lfx-one
300300
run: |
301301
if [ "${{ steps.validate-secrets.outputs.can_run_tests }}" == "false" ]; then
302302
echo "⏭️ E2E tests skipped (missing required secrets)"

CLAUDE.md

Lines changed: 4 additions & 4 deletions

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ WORKDIR /app
1515
# Copy package files ONLY for dependency installation (for better layer caching)
1616
COPY package.json yarn.lock turbo.json .yarnrc.yml ./
1717
COPY .yarn .yarn
18-
COPY apps/lfx-pcc/package.json ./apps/lfx-pcc/
18+
COPY apps/lfx-one/package.json ./apps/lfx-one/
1919
COPY packages/shared/package.json ./packages/shared/
2020

2121
# Install dependencies (this layer is cached when deps don't change)
@@ -31,4 +31,4 @@ RUN yarn build:${BUILD_ENV}
3131
EXPOSE 4000
3232

3333
# Start the SSR server directly from built artifacts
34-
CMD ["yarn", "workspace", "lfx-pcc", "start:server"]
34+
CMD ["yarn", "workspace", "lfx-one-ui", "start:server"]

README.md

Lines changed: 10 additions & 10 deletions

0 commit comments

Comments
 (0)