mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-25 15:03:46 +00:00
- Add EdgeNet service with real WASM module initialization from CDN - Add PiKey cryptographic identity store with Ed25519 signatures - Add IndexedDB persistence for credits, tasks, and settings - Add ConsentWidget for CPU/GPU contribution with settings modal - Add IdentityPanel for crypto identity management - Add DocumentationPanel with comprehensive user guide - Add SpecializedNetworks component for network communities - Deploy Edge-Net Genesis Relay to Google Cloud Run with security: - Origin validation (CORS whitelist) - Rate limiting (100 msgs/min per node) - Message size limits (64KB) - Connection timeout (30s heartbeat) - Max 5 connections per IP - Update Header with Edge-Net branding - Update Sidebar with Docs tab - Update networkStore to use real WASM stats - Configure dashboard to connect to Genesis relay 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
13 lines
149 B
Docker
13 lines
149 B
Docker
FROM node:20-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package*.json ./
|
|
RUN npm install --production
|
|
|
|
COPY . .
|
|
|
|
ENV PORT=8080
|
|
EXPOSE 8080
|
|
|
|
CMD ["node", "index.js"]
|