Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/agentic-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ jobs:

- name: Generate summary
run: |
mkdir -p ci-results
python3 -c "
import json, os, glob
results = {}
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ npm install
# Start development (backend + frontend)
npm run dev

# Verify backend health
curl http://127.0.0.1:3001/api/health

# Open http://localhost:3000
```

Expand Down Expand Up @@ -109,7 +112,9 @@ npm install
npm run dev
```

The backend runs on `http://localhost:3001` and the dashboard on `http://localhost:3000` with hot reload enabled for both.
The backend binds to `127.0.0.1:3001` by default and the dashboard runs on `http://localhost:3000` with hot reload enabled for both. Set `HOST` explicitly only on trusted networks; the local-first server does not provide authentication yet and restricts browser CORS to localhost origins.

Use `npm run typecheck` to run TypeScript checks for both workspaces without emitting build artifacts.

### Project Structure

Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "inference-forge",
"version": "0.1.0",
"version": "0.5.0",
"private": true,
"description": "All-in-one local LLM inference management suite — monitoring, benchmarking, and Modelfile generation",
"workspaces": [
Expand All @@ -12,6 +12,7 @@
"dev:server": "npm run dev -w packages/server",
"dev:dashboard": "npm run dev -w packages/dashboard",
"build": "npm run build -w packages/server && npm run build -w packages/dashboard",
"typecheck": "npm run typecheck -w packages/server && npm run typecheck -w packages/dashboard",
"start": "npm run start -w packages/server"
},
"devDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/dashboard/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "@inference-forge/dashboard",
"version": "0.1.0",
"version": "0.5.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"build": "tsc && vite build",
"typecheck": "tsc --noEmit",
"preview": "vite preview"
},
"dependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/dashboard/src/components/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import { TemplateGallery } from './TemplateGallery';
import { AgentPanel } from './AgentPanel';
import { ModelPull } from './ModelPull';
import { BackendPanel } from './BackendPanel';
import { APP_VERSION } from '../config/version';

type Tab = 'monitor' | 'benchmark' | 'modelfile' | 'analysis' | 'agents';

Expand Down Expand Up @@ -56,7 +57,7 @@ export function Dashboard() {
<span className="text-forge-text">Forge</span>
</div>
<span className="text-xs bg-forge-accent/20 text-forge-accent px-2 py-0.5 rounded-full">
v0.2.0
v{APP_VERSION}
</span>
</div>
<div className="flex items-center gap-2">
Expand Down
1 change: 1 addition & 0 deletions packages/dashboard/src/config/version.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const APP_VERSION = '0.5.0';
3 changes: 2 additions & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "@inference-forge/server",
"version": "0.1.0",
"version": "0.5.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"typecheck": "tsc --noEmit",
"start": "node dist/index.js"
},
"dependencies": {
Expand Down
Loading
Loading