- Updated Definition of Done report with detailed checks and results for backend and frontend tests. - Documented issues related to race conditions and test failures in QA reports. - Improved security scan notes and code cleanup status in QA reports. - Added summaries for rate limit integration test fixes, including root causes and resolutions. - Introduced new debug and integration scripts for rate limit testing. - Updated security documentation to reflect changes in configuration and troubleshooting steps. - Enhanced troubleshooting guides for CrowdSec and Go language server (gopls) errors. - Improved frontend and scripts README files for clarity and usage instructions.
23 lines
246 B
Markdown
23 lines
246 B
Markdown
# Backend Service
|
|
|
|
This folder contains the Go API for CaddyProxyManager+.
|
|
|
|
## Prerequisites
|
|
|
|
- Go 1.24+
|
|
|
|
## Getting started
|
|
|
|
```bash
|
|
cp .env.example .env # optional
|
|
cd backend
|
|
go run ./cmd/api
|
|
```
|
|
|
|
## Tests
|
|
|
|
```bash
|
|
cd backend
|
|
go test ./...
|
|
```
|