Keep validate.py and the finding engine as-is. AGPL LICENSE stays at the repo root. Docker overlays dependency then src. Do not delete the inherited tree.
16 lines
535 B
Markdown
16 lines
535 B
Markdown
# Periscope — Agentic Schematic Validation
|
|
|
|
Open-core checkout. **Native code** lives in `periscope/src`. **Inherited PinScope** lives in `periscope/dependency` (in-tree AGPL dependency — do not delete). Root `LICENSE` is AGPL-3.0.
|
|
|
|
## Running
|
|
|
|
```bash
|
|
# Backend (copy periscope/dependency/backend/.env.example to .env at repo root first)
|
|
python3 -m uvicorn backend.main:app --reload # localhost:8000
|
|
|
|
# Frontend
|
|
cd periscope/dependency/frontend && npm run dev # localhost:3000
|
|
```
|
|
|
|
See `periscope/README.md` and root `README.md`.
|