- Add backend/node_modules to .gitignore - Untrack backend/node_modules from git - Restore backend source files (go.mod, main.go, etc.) that were missing in HEAD - Include frontend test updates
20 lines
243 B
Markdown
20 lines
243 B
Markdown
# Backend Service
|
|
|
|
This folder contains the Go API for CaddyProxyManager+.
|
|
|
|
## Prerequisites
|
|
- Go 1.22+
|
|
|
|
## Getting started
|
|
```bash
|
|
cp .env.example .env # optional
|
|
cd backend
|
|
go run ./cmd/api
|
|
```
|
|
|
|
## Tests
|
|
```bash
|
|
cd backend
|
|
go test ./...
|
|
```
|