mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-04-23 03:00:50 -04:00
25 lines
345 B
Markdown
25 lines
345 B
Markdown
# Coordinator
|
|
|
|
This repo contains the Scroll coordinator.
|
|
|
|
## Build
|
|
|
|
```bash
|
|
make clean
|
|
make coordinator
|
|
```
|
|
|
|
## Start
|
|
|
|
* use default ports and config.json
|
|
|
|
```bash
|
|
./build/bin/coordinator --http
|
|
```
|
|
|
|
* use specified ports and config.json
|
|
|
|
```bash
|
|
./build/bin/coordinator --config ./config.json --http --http.addr localhost --http.port 8390
|
|
```
|