Skip to content

Commit

Permalink
adjust helpers to account for frontend folder removal
Browse files Browse the repository at this point in the history
  • Loading branch information
Firebird1029 committed Mar 16, 2024
1 parent 6a847bc commit 3ea2032
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint-v1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install frontend modules
run: cd frontend && npm ci
run: npm ci
- name: Lint frontend
run: cd frontend && npm run lint
run: npm run lint
- name: Install backend modules
run: cd api && pip install -r requirements.txt
- name: Lint backend
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ cd api && pip install -r requirements.txt && cd -
To install the frontend NPM packages:

```bash
cd frontend && npm install && cd -
npm install && cd -
```

## Backend

To run the backend server:
To run the local backend server:

```bash
cd api
Expand All @@ -37,10 +37,9 @@ http://127.0.0.1:5000/api/ping

## Frontend

To run the frontend application:
To run the local frontend application:

```bash
cd frontend
npm run dev
```

Expand All @@ -50,7 +49,7 @@ To lint the frontend code:
npm run lint
```

To access the frontend application:
To access the local frontend application:

```plaintext
localhost:3000
Expand Down

0 comments on commit 3ea2032

Please sign in to comment.