feat: initial mIRCcloud.com scaffold
- Express + TypeScript backend with IRC connection manager - React + Vite frontend with mIRC-inspired theme - Drizzle ORM + PostgreSQL schema (users, connections, channels, messages) - Redis pub/sub for real-time WebSocket delivery across replicas - IRC color code parser (16 + 99 extended palette) - Kubernetes manifests for homecloud deployment - Multi-stage Dockerfile with non-root user - docker-compose for local development
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"name": "mirccloud",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"description": "Self-hosted always-connected web IRC client with mIRC aesthetics",
|
||||
"workspaces": [
|
||||
"server",
|
||||
"client"
|
||||
],
|
||||
"scripts": {
|
||||
"dev": "npm run dev --workspace=server",
|
||||
"dev:client": "npm run dev --workspace=client",
|
||||
"build": "npm run build --workspace=client && npm run build --workspace=server",
|
||||
"start": "npm run start --workspace=server",
|
||||
"db:generate": "npm run db:generate --workspace=server",
|
||||
"db:migrate": "npm run db:migrate --workspace=server"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user