docs: add docs

This commit is contained in:
js0ny 2025-12-06 10:34:27 +00:00
parent 439162ce22
commit 9db0a7013a
7 changed files with 232 additions and 30 deletions

View file

@ -17,3 +17,28 @@ chromium --user-data-dir="/tmp/chromium" --disable-web-security
```
since CORS is not handled in this setup.
### Setup via Nix
Ensure you have [Nix](https://nixos.org/download.html) installed, then run:
```bash
nix develop
```
This will set up a development environment with all necessary dependencies.
Then start each component separately:
```bash
cd ilp-rest-service
./gradlew bootRun
cd drone-black-box/
go build
./drone-black-box
cd drone-frontend/
bun dev .
```