refactor(app): rename frontend directory (#273)
10
.github/workflows/test.lint.frontend.yml
vendored
@ -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/
|
||||||
|
|||||||
2
.github/workflows/test.lint.pr.yml
vendored
@ -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
|
||||||
|
|||||||
0
frontend/.gitignore → app/.gitignore
vendored
@ -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
|
||||||
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 682 KiB After Width: | Height: | Size: 682 KiB |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 487 B After Width: | Height: | Size: 487 B |
|
Before Width: | Height: | Size: 535 KiB After Width: | Height: | Size: 535 KiB |
@ -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 \
|
||||||
|
|||||||