browsertrix/docs/develop/index.md
Henry Wilkinson 8ba29ca776
Browsertrix Cloud → Browsertrix text rename (#1466)
Part of #1241

### Changes
- Renames all instances of "Browsertrix Cloud" to "Browsertrix" on the
front end, emails, and documentation

---------

Co-authored-by: emma <hi@emma.cafe>
2024-03-12 11:30:05 -04:00

31 lines
1.0 KiB
Markdown

---
hide:
- toc
---
# Developing Browsertrix
Browsertrix consists of a Python-based backend and TypeScript-based frontend.
To develop Browsertrix, the system must [first be deployed locally](../deploy/local.md) in a Kubernetes cluster.
The deployment can then be [further customized for local development](./local-dev-setup.md).
### Backend
The backend is an API-only system, using the FastAPI framework. Latest API docs can be viewed in the browser by adding `/api/redoc` to the URL of a running cluster (ex: `http://localhost:30870/api/redoc` when running locally on port `30870`.)
At this time, the backend must be deployed in the Kubernetes cluster.
<!-- *TODO Add additional info here* -->
### Frontend
The frontend UI is implemented in TypeScript, using the Lit framework and Shoelace component library.
The static build of the frontend is bundled with nginx, but the frontend can be deployed locally in dev mode against an existing backend.
See [Developing the Frontend UI](frontend-dev.md) for more details.
<!-- *TODO Add additional info here* -->