mirror of
https://github.com/YGGverse/btracker.git
synced 2026-03-31 17:15:31 +00:00
rename project to the βtracker
This commit is contained in:
parent
11a398e90c
commit
70edde7cc7
4 changed files with 16 additions and 16 deletions
|
|
@ -1,13 +1,13 @@
|
||||||
[package]
|
[package]
|
||||||
name = "yggtrackerd"
|
name = "btracker"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
description = "BitTorrent aggregation web-server, based on the Rocket framework and aquatic-crawler FS"
|
description = "βtracker is a BitTorrent aggregator based on the aquatic-crawler API and Rocket web-framework"
|
||||||
keywords = ["yggtracker", "bittorrent", "server", "aggregator", "catalog"]
|
keywords = ["bittorrent", "aquatic", "aquatic-crawler", "librqbit", "rocket"]
|
||||||
categories = ["network-programming"]
|
categories = ["network-programming"]
|
||||||
repository = "https://github.com/YGGverse/yggtrackerd"
|
repository = "https://github.com/yggverse/btracker"
|
||||||
# homepage = "https://yggverse.github.io"
|
# homepage = "https://yggverse.github.io"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
|
||||||
20
README.md
20
README.md
|
|
@ -1,10 +1,10 @@
|
||||||
# yggtrackerd
|
# btracker
|
||||||
|
|
||||||

|

|
||||||
[](https://deps.rs/repo/github/YGGverse/yggtrackerd)
|
[](https://deps.rs/repo/github/YGGverse/btracker)
|
||||||
[](https://crates.io/crates/yggtrackerd)
|
[](https://crates.io/crates/btracker)
|
||||||
|
|
||||||
BitTorrent aggregation web-server, based on the [Rocket](https://rocket.rs) framework and [aquatic-crawler](https://github.com/YGGverse/aquatic-crawler) FS
|
βtracker is a BitTorrent aggregator based on the [aquatic-crawler](https://github.com/yggverse/aquatic-crawler) API and [Rocket](https://rocket.rs) web-framework
|
||||||
|
|
||||||
## Roadmap
|
## Roadmap
|
||||||
|
|
||||||
|
|
@ -15,7 +15,7 @@ BitTorrent aggregation web-server, based on the [Rocket](https://rocket.rs) fram
|
||||||
* [ ] Search filter
|
* [ ] Search filter
|
||||||
* [ ] Results order
|
* [ ] Results order
|
||||||
* [ ] Torrent details page
|
* [ ] Torrent details page
|
||||||
* [ ] File list
|
* [ ] Files list
|
||||||
* [ ] Background image (from the files asset)
|
* [ ] Background image (from the files asset)
|
||||||
* [ ] Common features
|
* [ ] Common features
|
||||||
* [ ] Scrape peers/seeds
|
* [ ] Scrape peers/seeds
|
||||||
|
|
@ -25,19 +25,19 @@ BitTorrent aggregation web-server, based on the [Rocket](https://rocket.rs) fram
|
||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
1. `git clone https://github.com/YGGverse/yggtrackerd.git && cd yggtrackerd`
|
1. `git clone https://github.com/yggverse/btracker.git && cd btracker`
|
||||||
2. `cargo build --release`
|
2. `cargo build --release`
|
||||||
3. `sudo install target/release/yggtrackerd /usr/local/bin/yggtrackerd`
|
3. `sudo install target/release/btracker /usr/local/bin/btracker`
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
``` bash
|
``` bash
|
||||||
yggtrackerd --storage /path/to/aquatic-crawler/preload
|
btracker --storage /path/to/aquatic-crawler/preload
|
||||||
```
|
```
|
||||||
* append `RUST_LOG=debug` for detailed information output
|
* append `RUST_LOG=debug` for detailed information output
|
||||||
|
|
||||||
### Options
|
### Options
|
||||||
|
|
||||||
``` bash
|
``` bash
|
||||||
yggtrackerd --help
|
btracker --help
|
||||||
```
|
```
|
||||||
|
|
@ -21,7 +21,7 @@ pub struct Config {
|
||||||
pub capacity: usize,
|
pub capacity: usize,
|
||||||
|
|
||||||
/// Server name
|
/// Server name
|
||||||
#[arg(long, default_value_t = String::from("YGGtracker"))]
|
#[arg(long, default_value_t = String::from("βtracker"))]
|
||||||
pub title: String,
|
pub title: String,
|
||||||
|
|
||||||
/// Server description
|
/// Server description
|
||||||
|
|
|
||||||
|
|
@ -169,7 +169,7 @@
|
||||||
</main>
|
</main>
|
||||||
<footer>
|
<footer>
|
||||||
<a href="/rss">RSS</a> |
|
<a href="/rss">RSS</a> |
|
||||||
<a href="https://github.com/YGGverse/YGGtracker">GitHub</a>
|
<a href="https://github.com/yggverse/btracker">GitHub</a>
|
||||||
</footer>
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue