Refactored frontend directory
Some checks failed
Chore App Build, Test, and Push Docker Images / build-and-push (push) Failing after 2m46s

This commit is contained in:
2026-04-25 00:40:15 -04:00
parent db846f4e31
commit 127378797c
263 changed files with 88 additions and 79 deletions

View File

@@ -24,7 +24,7 @@ python -m flask run --host=0.0.0.0 --port=5000
### Frontend
```bash
cd frontend/vue-app
cd frontend
npm install
npm run dev
```
@@ -114,7 +114,7 @@ pytest tests/
### Frontend Tests
```bash
cd frontend/vue-app
cd frontend
npm run test
```
@@ -151,11 +151,10 @@ npm run test
│ ├── tests/ # Backend tests
│ └── utils/ # Utilities (scheduler, etc)
├── frontend/
│ └── vue-app/
── src/
├── common/ # Shared utilities
├── components/ # Vue components
│ └── layout/ # Layout components
│ └── src/
── common/ # Shared utilities
│ ├── components/ # Vue components
└── layout/ # Layout components
└── .github/
└── specs/ # Feature specifications
```