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
2 changes: 1 addition & 1 deletion .github/workflows/ci-build-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
workflow_dispatch: # Allow manual triggering

env:
BUN_VERSION: '1.1.34'
BUN_VERSION: '1.3.2'
NODE_VERSION: '20'

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-management.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
- 'bun.lockb'

env:
BUN_VERSION: '1.1.34'
BUN_VERSION: '1.3.2'

jobs:
# 🔍 Dependency analysis
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
default: 'v1.4.0'

env:
BUN_VERSION: '1.1.34'
BUN_VERSION: '1.3.2'

jobs:
# 🔒 Security and dependency audit
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,9 @@ dist

chrome_data
.chromium

# Plugin-local lock files (dependencies resolved from root)
plugins/*/bun.lock
core/server/live/auto-generated-components.ts
app/client/.live-stubs/
Fluxstack-Desktop
Expand Down
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ FROM oven/bun:1.2-alpine AS deps

WORKDIR /app

# Copy package files
# Copy package files and postinstall script
COPY package.json bun.lock ./
COPY scripts/ ./scripts/

# Install production dependencies only
RUN bun install --production --frozen-lockfile
Expand All @@ -21,8 +22,9 @@ FROM oven/bun:1.2-alpine AS builder

WORKDIR /app

# Copy package files and install all dependencies (including dev)
# Copy package files, postinstall script, and install all dependencies (including dev)
COPY package.json bun.lock ./
COPY scripts/ ./scripts/
RUN bun install --frozen-lockfile

# Copy source code
Expand Down
7 changes: 4 additions & 3 deletions LLMD/INDEX.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# FluxStack LLM Documentation

**Version:** 1.12.1 | **Framework:** Bun + Elysia + React + Eden Treaty
**Version:** 2.0.0 | **Framework:** Bun + Elysia + React + Eden Treaty

## Quick Navigation

Expand All @@ -9,7 +9,7 @@
**Creating Routes?** → [resources/routes-eden.md](resources/routes-eden.md)
**REST API Auth?** → [resources/rest-auth.md](resources/rest-auth.md)
**Live Components Auth?** → [resources/live-auth.md](resources/live-auth.md)
**Real-time Rooms?** → [resources/live-rooms.md](resources/live-rooms.md)
**Real-time Rooms?** → [resources/live-rooms.md](resources/live-rooms.md) (Typed LiveRoom + untyped, password rooms, directory)
**Debugging Logs?** → [resources/live-logging.md](resources/live-logging.md)
**Config Issues?** → [config/declarative-system.md](config/declarative-system.md)
**Plugin Development?** → [resources/plugins-external.md](resources/plugins-external.md)
Expand All @@ -34,9 +34,10 @@
- [Live Components](resources/live-components.md) - WebSocket components
- [REST Auth](resources/rest-auth.md) - Session & Token guards, middleware, rate limiting
- [Live Auth](resources/live-auth.md) - Authentication for Live Components
- [Live Rooms](resources/live-rooms.md) - Multi-room real-time communication
- [Live Rooms](resources/live-rooms.md) - Typed rooms (LiveRoom), password protection, room directory, untyped rooms
- [Live Logging](resources/live-logging.md) - Per-component logging control
- [Live Upload](resources/live-upload.md) - Chunked upload via Live Components
- [Live Binary Delta](resources/live-binary-delta.md) - High-frequency binary state sync
- [External Plugins](resources/plugins-external.md) - Plugin development
- [Routing (React Router v7)](reference/routing.md) - Frontend routing setup

Expand Down
Loading
Loading