RAG와 LangGraph, tool-based execution을 활용하는 evidence-driven workspace
An evidence-driven workspace powered by RAG, LangGraph, and tool-based execution
GUI/CLI testing, vulnerability analysis, compliance auditing을 지원하는 방향입니다.
See the Korean and English documentation for details.
Vericus now includes an initial local application scaffold:
- Frontend: Next.js, React, TypeScript, Tailwind CSS, axios, SweetAlert2, Playwright.
- Backend: Django, Django REST Framework, Django Admin, Django ORM, django-cors-headers.
- Local integration: the Next.js dev server rewrites
/api/*to the Django backend athttp://127.0.0.1:8000/api/*. - Health endpoint:
GET /api/health/returns the Django/DRF service status. - Admin route: Django Admin is enabled at
/admin/.
Docker, Nginx, K8s, Helm, production deployment manifests, custom domain models, custom migrations, and SQL schema work are not part of this initial scaffold.
# Backend
python -m pip install -r backend/requirements.txt
python backend/manage.py check
python backend/manage.py runserver 127.0.0.1:8000
# Frontend
cd frontend
npm install
npm run build
npm run test:visual
npm run dev -- --hostname 127.0.0.1 --port 3000Open http://127.0.0.1:3000 to view the Vericus workspace shell and backend health status.
Django Admin is enabled at /admin/. To use it locally, run Django built-in migrations and create a local superuser:
python backend/manage.py migrate
python backend/manage.py createsuperuserbackend/db.sqlite3 is a local development artifact and must not be committed. This scaffold does not add custom domain migrations.
| Language | README |
|---|---|
| 한국어 | docs/README.ko.md |
| English | docs/README.en.md |
Source code is licensed under the PolyForm Noncommercial License 1.0.0. See the repository license file for details.