Skip to content

Commit 69da311

Browse files
committed
mention the new services in the readme file
1 parent 1a4fd8e commit 69da311

File tree

1 file changed

+40
-16
lines changed

1 file changed

+40
-16
lines changed

README.md

Lines changed: 40 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,15 @@ python main.py
9797
```
9898
The LLM service will be available at [http://localhost:5000](http://localhost:5000).
9999

100+
### Prometheus
101+
102+
Access Prometheus at [http://localhost:9090](http://localhost:9090)
103+
104+
### Grafana
105+
106+
Access Grafana at [http://localhost:3001](http://localhost:3001)
107+
108+
100109
## Development Workflow
101110

102111
### Client Development
@@ -179,24 +188,39 @@ The project includes GitHub Actions workflows for:
179188
## Project Structure
180189

181190
```
182-
├── client/ # SvelteKit client
183-
│ ├── src/ # Source code
184-
│ ├── static/ # Static assets
185-
│ └── package.json # Client dependencies
186-
187-
├── server/ # Spring Boot server
188-
│ ├── src/ # Source code including gRPC services
189-
│ ├── build.gradle # Gradle build file
190-
│ └── Dockerfile # Server Dockerfile
191+
├── client/ # SvelteKit client
192+
│ ├── src/ # Source code
193+
│ ├── static/ # Static assets
194+
│ └── package.json # Client dependencies
191195
192-
├── llm/ # Python LLM service
193-
│ ├── main.py # FastAPI application
194-
│ ├── requirements.txt # Python dependencies
195-
│ └── Dockerfile # LLM service Dockerfile
196+
├── server/ # Spring Boot server
197+
│ ├── src/ # Source code including gRPC services
198+
│ ├── build.gradle # Gradle build file
199+
│ └── Dockerfile # Server Dockerfile
200+
|
201+
├── grafana/provisioning # Grafana service
202+
│ ├── dashboards # Grafana dashboard
203+
│ ├── sample-dashboard.json # Example dashboard
204+
| ├── datasources # Loki service
205+
│ └── notifiers # Alerts
206+
|
207+
├── Loki # Loki service
208+
│ └── loki-config.yaml # Loki configuration
209+
|
210+
├── Prometheus # Prometheus service
211+
│ └── prometheus.yaml # Prometheus configuration
212+
|
213+
├── Promtail # Promtail service
214+
│ └── promtail.yaml # Promtail configuration
215+
|
216+
├── llm/ # Python LLM service
217+
│ ├── main.py # FastAPI application
218+
│ ├── requirements.txt # Python dependencies
219+
│ └── Dockerfile # LLM service Dockerfile
196220
197-
├── docs/ # API documentation (Bruno collection)
198-
├── compose.yml # Docker Compose for local development
199-
└── .github/workflows/ # CI/CD workflows
221+
├── docs/ # API documentation (Bruno collection)
222+
├── compose.yml # Docker Compose for local development
223+
└── .github/workflows/ # CI/CD workflows
200224
```
201225

202226
## API Documentation

0 commit comments

Comments
 (0)