refactor(app): rename frontend directory (#273)

This commit is contained in:
Anton Tranelis 2025-07-01 16:51:46 +02:00 committed by GitHub
parent 712aa98ac2
commit 729f97f38a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
45 changed files with 8 additions and 8 deletions

View File

@ -1,10 +1,10 @@
name: test:lint:frontend name: test:lint:app
on: push on: push
jobs: jobs:
files-changed: files-changed:
name: Detect File Changes - lint - frontend name: Detect File Changes - lint - app
runs-on: ubuntu-latest runs-on: ubuntu-latest
outputs: outputs:
lint: ${{ steps.filter.outputs.lint }} lint: ${{ steps.filter.outputs.lint }}
@ -16,11 +16,11 @@ jobs:
filters: | filters: |
lint: lint:
- '.github/workflows/**/*' - '.github/workflows/**/*'
- 'frontend/**/*' - 'app/**/*'
lint: lint:
if: needs.files-changed.outputs.lint == 'true' if: needs.files-changed.outputs.lint == 'true'
name: Lint - frontend name: Lint - app
needs: files-changed needs: files-changed
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
@ -30,4 +30,4 @@ jobs:
node-version-file: '.tool-versions' node-version-file: '.tool-versions'
- name: Lint - name: Lint
run: npm install && npm run test:lint:eslint run: npm install && npm run test:lint:eslint
working-directory: frontend/ working-directory: app/

View File

@ -30,7 +30,7 @@ jobs:
# Append a scope for each service here # Append a scope for each service here
scopes: | scopes: |
backend backend
frontend app
lib lib
docu docu
docker docker

View File

@ -38,7 +38,7 @@ services:
backend: backend:
container_name: backend container_name: backend
build: build:
context: ./backend context: ../backend
depends_on: depends_on:
database: database:
condition: service_healthy condition: service_healthy

View File

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

View File

Before

Width:  |  Height:  |  Size: 682 KiB

After

Width:  |  Height:  |  Size: 682 KiB

View File

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

Before

Width:  |  Height:  |  Size: 487 B

After

Width:  |  Height:  |  Size: 487 B

View File

Before

Width:  |  Height:  |  Size: 535 KiB

After

Width:  |  Height:  |  Size: 535 KiB

View File

@ -1,4 +1,4 @@
In order to pull data from your locally running backend (see [docker-compose](../docker-compose.yml)) to your local harddrive, you can run the following command In order to pull data from your locally running backend (see [docker-compose](../app/docker-compose.yml)) to your local harddrive, you can run the following command
``` ```
npx directus-sync pull \ npx directus-sync pull \