16 lines
383 B
Markdown
16 lines
383 B
Markdown
|
# Start developing
|
||
|
|
||
|
## One time setup
|
||
|
|
||
|
**The binary has to be compiled with the musl target:**
|
||
|
```
|
||
|
$ rustup target add x86_64-unknown-linux-musl
|
||
|
$ cargo build --target=x86_64-unknown-linux-musl
|
||
|
```
|
||
|
|
||
|
1. Run `ansible-playbook setup.yaml` to generate all required
|
||
|
development files.
|
||
|
2. Run `docker compose up -d` to start 4 development servers which are
|
||
|
connected via wireguard.
|
||
|
|