pilgrim/docs/SETUP.md

20 lines
339 B
Markdown
Raw Normal View History

2025-03-15 19:36:11 +02:00
# Setup
This project is built using golang `1.23.1`.
2025-03-18 22:36:52 +02:00
### Setup steps
2025-03-15 19:36:11 +02:00
1. Checkout this repository
2025-03-18 21:45:07 +02:00
2. Execute the script below
2025-03-15 19:36:11 +02:00
2025-03-18 21:45:07 +02:00
This will build a `pilgrim` binary in the `target` folder:
```bash
$ go build -o target/pilgrim main.go
```
Alternatively, run the `build_local.sh` script provided in `bin`
```bash
$ ./bin/build_local.sh
2025-03-18 21:45:07 +02:00
```