Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 1.18 KB

File metadata and controls

37 lines (24 loc) · 1.18 KB

Codespaces And Docker

Purpose

This repository includes a lightweight GitHub Codespaces/devcontainer path so contributors can inspect the enterprise foundation without mutating their host machine first.

Codespaces

Open the repository in GitHub Codespaces and let the devcontainer build. The container uses Node.js 20, GitHub CLI, Docker-outside-of-Docker support, and VS Code extensions for TypeScript, GitHub Actions, Prisma, and Docker workflows.

After attach, the container runs:

node scripts/enterprise-readiness-check.mjs

Local Docker Boundary

The devcontainer is intended for development isolation. It does not include real secrets and does not start paid providers automatically.

First Manual Checks

node scripts/enterprise-readiness-check.mjs
node --test tests/enterprise-readiness.test.mjs
npm install
npm run lint
npm run build

Run dependency installs only when you are intentionally validating the runtime. Keep .env.local local and never commit real credentials.

Product Context