46 lines
448 B
Markdown
46 lines
448 B
Markdown
# replay_downloader
|
|
|
|
A Tool to mass download EZPPFarm replays from specific leaderboards
|
|
|
|
## Dependencies
|
|
|
|
- [Bun](https://bun.sh)
|
|
|
|
## To install bun:
|
|
|
|
### Windows:
|
|
|
|
```bash
|
|
powershell -c "irm bun.sh/install.ps1 | iex"
|
|
```
|
|
|
|
### Linux & macOS:
|
|
|
|
```bash
|
|
curl -fsSL https://bun.sh/install | bash
|
|
```
|
|
|
|
---
|
|
|
|
## To install dependencies:
|
|
|
|
```bash
|
|
bun install
|
|
```
|
|
|
|
---
|
|
|
|
## To debug:
|
|
|
|
```bash
|
|
bun run debug
|
|
```
|
|
|
|
---
|
|
|
|
## To build:
|
|
|
|
```bash
|
|
bun run build
|
|
```
|