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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@ TODO.md
# CI ephemeral Dagster dirs (quality-checks sets DAGSTER_* under repo root)
tmp_dagster/

# Maintainer-only / local audit notes (do not commit)
docs/READINESS-AUDIT.md

# Local
.actrc
.mcp.json
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ It analyzes open-source projects and matches them to contributors — so you fin
## Getting Started

```bash
cp .env.example .env # configure environment
make setup # install deps + compile Go binaries
npm ci # Prisma / ts-node (package.json is in-repo)
docker compose up --build -d # start services (Dagster UI at :3000)
make db-init # apply schema + seed data
make ci-check # same Python gates as GitHub Actions (before a PR)
cp .env.example .env # set DATABASE_URL, tokens, optional host ports (see file + AGENTS.md)
make setup # uv sync + compile Go binaries
npm ci # Prisma / Node (needed before db-init)
docker compose up --build -d # Dagster + API + db (default host: Dagster :3000, API :8000 unless overridden in .env)
make db-init # Prisma schema + seed
make ci-check # Python parity with CI quality job (before a PR); full CI is broader — see AGENTS.md
```

## Contributing

Contributions are welcome. See [CONTRIBUTING.md](CONTRIBUTING.md) for how to propose changes, run checks, and open PRs. A maintainer-facing [readiness audit](docs/READINESS-AUDIT.md) covers OSS posture, security, CI, and recommendations pipeline health.
See [CONTRIBUTING.md](CONTRIBUTING.md) (branch flow, conventions, **`make ci-check`**). For command cheat-sheets (**dbt**, API, Docker overrides), see [AGENTS.md](AGENTS.md).

## License

Expand Down
174 changes: 0 additions & 174 deletions docs/READINESS-AUDIT.md

This file was deleted.

Loading