mirror of
https://github.com/RGJorge/ContainerFlow.git
synced 2026-08-03 07:21:42 +02:00
Adds a GitHub Actions workflow that builds and pushes the Docker image to ghcr.io/rgjorge/containerflow on every tag push, so end users can run ContainerFlow without cloning the repo or building locally. - New workflow: .github/workflows/docker-release.yml - docker-compose.yml: uses the prebuilt image from GHCR by default - New docker-compose.local.yml: override for building from source (devs) - .env.example: simplified + adds COMPOSE_FILE toggle for local build - README EN + ES: quick-start updated to no-clone flow - .gitignore: ignore task/ planning notes dir
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "containerflow",
|
|
"version": "0.1.4",
|
|
"license": "AGPL-3.0-or-later",
|
|
"author": "Jorge Gonzalez D. (RGJorge)",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "concurrently \"bun run dev:server -- --all\" \"bun run dev:client\"",
|
|
"dev:server": "bun --watch src/server/index.ts",
|
|
"dev:client": "vite",
|
|
"build": "vite build",
|
|
"start": "bun run src/server/index.ts --all",
|
|
"preview": "bun run build && bun run start",
|
|
"mcp": "bun src/server/mcp.ts",
|
|
"setup:mcp": "bun scripts/install-mcp.ts",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
"dockerode": "^4",
|
|
"hono": "^4",
|
|
"lucide-react": "^0.577.0",
|
|
"yaml": "^2",
|
|
"zod": "^3"
|
|
},
|
|
"devDependencies": {
|
|
"@dagrejs/dagre": "^1",
|
|
"@tailwindcss/vite": "^4",
|
|
"@types/bun": "^1.3.13",
|
|
"@types/dockerode": "^3",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"@vitejs/plugin-react": "^4",
|
|
"@xyflow/react": "^12",
|
|
"concurrently": "^9",
|
|
"react": "^19",
|
|
"react-dom": "^19",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5",
|
|
"vite": "^6",
|
|
"vitest": "^4.1.5"
|
|
}
|
|
}
|