Skip to content

Commit d1a108f

Browse files
Alexandre Oliveiraclaude
andcommitted
fix(turing): update frontend stack to shadcn/ui + Vite
- Replace Primer CSS with shadcn/ui - Replace npm start / port 3000 with npm run dev / port 5173 (Vite) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 9dccaae commit d1a108f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs-turing/developer-guide.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Understanding the stack helps you navigate the codebase and decide where to plug
2222
| **Search Engine** | Apache Solr (primary) · Elasticsearch · Lucene |
2323
| **Message Queue** | Apache Artemis |
2424
| **Database** | H2 (dev) · PostgreSQL / MySQL (prod) |
25-
| **Frontend** | React · TypeScript · Primer CSS |
25+
| **Frontend** | React · TypeScript · shadcn/ui · Vite |
2626
| **AI / GenAI** | Spring AI · ChromaDB · PgVector · Milvus |
2727
| **Build** | Maven (backend) · npm (frontend) |
2828
| **CI/CD** | GitHub Actions |
@@ -107,10 +107,10 @@ Then launch the React app:
107107
```shell
108108
cd turing/turing-ui
109109
npm install
110-
npm start
110+
npm run dev
111111
```
112112

113-
The React dev server starts at **`http://localhost:3000`** with hot-reload enabled.
113+
The Vite dev server starts at **`http://localhost:5173`** with hot-reload enabled.
114114

115115
### Production Build
116116

@@ -129,7 +129,7 @@ The resulting JAR in `turing-app/target/` bundles both the backend and the compi
129129
| Service | URL | Notes |
130130
|---|---|---|
131131
| Admin Console | `http://localhost:2700` | Backend-served |
132-
| React Dev Server | `http://localhost:3000` | Hot-reload |
132+
| React Dev Server | `http://localhost:5173` | Vite hot-reload |
133133
| SN Search Sample | `http://localhost:2700/sn/Sample` | |
134134
| Swagger UI | `http://localhost:2700/swagger-ui.html` | Interactive API docs |
135135
| OpenAPI Spec | `http://localhost:2700/v3/api-docs` | JSON spec |

0 commit comments

Comments
 (0)