@@ -15,11 +15,11 @@ Lightspeed Core Stack (LCS) is an AI-powered assistant built on FastAPI that pro
1515### Project Structure
1616```
1717src/
18- ├── app/ # FastAPI application
19- │ ├── endpoints/ # REST API endpoints
18+ ├── app/ # FastAPI application
19+ │ ├── endpoints/ # REST API endpoints
2020│ └── main.py # Application entry point
21- ├── auth/ # Authentication modules (k8s, jwk, noop)
22- ├── authorization/ # Authorization middleware & resolvers
21+ ├── auth/ # Authentication modules (k8s, jwk, noop)
22+ ├── authorization/ # Authorization middleware & resolvers
2323├── models/ # Pydantic models
2424│ ├── config.py # Configuration classes
2525│ ├── requests.py # Request models
110110### Test Structure
111111```
112112tests/
113- ├── unit/ # Unit tests (pytest)
114- ├── integration/ # Integration tests
113+ ├── unit/ # Unit tests (pytest)
114+ ├── integration/ # Integration tests (pytest)
115115└── e2e/ # End-to-end tests (behave)
116116 └── features/ # Gherkin feature files
117117```
@@ -146,7 +146,7 @@ tests/
146146``` bash
147147uv run make test-unit # Unit tests with coverage
148148uv run make test-integration # Integration tests
149- uv run make test-e2e # End-to-end tests
149+ uv run make test-e2e # End-to-end tests
150150```
151151
152152## Quality Assurance
@@ -184,4 +184,4 @@ uv run make test-e2e # End-to-end tests
1841843 . ** ALWAYS** check ` pyproject.toml ` for existing dependencies and versions before adding new ones
1851854 . Follow existing code patterns in the module you're modifying
1861865 . Write unit tests covering new functionality
187- 6 . Run format and verify before completion
187+ 6 . Run format and verify before completion
0 commit comments